STINNER Victor <[email protected]> added the comment:
We may backport the change to Python 2.7 as well, but in this case terminate()
must be changed to test returncode:
def terminate(self):
"""Terminates the process."""
# Don't terminate a process that we know has already died.
if self.returncode is not None:
return
...
----------
_______________________________________
Python tracker <[email protected]>
<https://bugs.python.org/issue37410>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe:
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com