Revert "Merge pull request #1364 from evandroforks/fix_unclosed_python_file"

This reverts commit c05475a49e.

Revert "possible fix for reported audio issues"

This reverts commit f00f7f099f.

Reverting in case https://forums.ankiweb.net/t/2-1-48-release-candidate/13268/10
is related to this change. If the issue persists, we'll know this was
not the cause.
This commit is contained in:
Damien Elmes 2021-09-20 21:36:24 +10:00
parent f00f7f099f
commit cdad1efdcf

View file

@ -313,11 +313,6 @@ class SimpleProcessPlayer(Player): # pylint: disable=abstract-method
if self._terminate_flag:
self._process.terminate()
self._process.wait(1)
try:
if self._process.stdin:
self._process.stdin.close()
except Exception as e:
print("unable to close stdin:", e)
self._process = None
return
@ -326,11 +321,6 @@ class SimpleProcessPlayer(Player): # pylint: disable=abstract-method
self._process.wait(0.1)
if self._process.returncode != 0:
print(f"player got return code: {self._process.returncode}")
try:
if self._process.stdin:
self._process.stdin.close()
except Exception as e:
print("unable to close stdin:", e)
self._process = None
return
except subprocess.TimeoutExpired: