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 2020-03-11.23:10:56
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1583968256.43.0.607036154625.issue39941@roundup.psfhosted.org>
In-reply-to
Content
While debugging bpo-39877, I was surprising that Python crash was only noticed on FreeBSD by a side effect. On FreeBSD, coredump files are created in the current directory. But Python regrtest fails if a test creates a file and doesn't remove it.

I found that multiprocessing.Process.join() deletes the subprocess.Popen object as soon as the process completes, but it doesn't log any warning if the process is killed by a signal. The caller has no way to be notified.

I propose to enhance Process to log a warning if such case happens.
History
Date User Action Args
2020-03-11 23:10:56vstinnersetrecipients: + vstinner
2020-03-11 23:10:56vstinnersetmessageid: <1583968256.43.0.607036154625.issue39941@roundup.psfhosted.org>
2020-03-11 23:10:56vstinnerlinkissue39941 messages
2020-03-11 23:10:56vstinnercreate