This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients vstinner
Date 2019-06-26.13:38:43
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1561556323.47.0.484264036768.issue37410@roundup.psfhosted.org>
In-reply-to
Content
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
            ...
History
Date User Action Args
2019-06-26 13:38:43vstinnersetrecipients: + vstinner
2019-06-26 13:38:43vstinnersetmessageid: <1561556323.47.0.484264036768.issue37410@roundup.psfhosted.org>
2019-06-26 13:38:43vstinnerlinkissue37410 messages
2019-06-26 13:38:43vstinnercreate