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 eryksun
Recipients efiop, eryksun, gregory.p.smith, paul.moore, steve.dower, tim.golden, zach.ware
Date 2019-06-23.19:04:59
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1561316699.7.0.755025803002.issue37380@roundup.psfhosted.org>
In-reply-to
Content
See issue 36067 for a related discussion. The _active list and _cleanup function are not required in Windows. When a process exits, it gets rundown to free its handle table and virtual memory. Only the kernel object remains, which is kept alive by pointer and handle references to it that can query information such as the exit status code. As soon as the last reference is closed, the Process object is automatically reaped. It doesn't have to be waited on.
History
Date User Action Args
2019-06-23 19:04:59eryksunsetrecipients: + eryksun, gregory.p.smith, paul.moore, tim.golden, zach.ware, steve.dower, efiop
2019-06-23 19:04:59eryksunsetmessageid: <1561316699.7.0.755025803002.issue37380@roundup.psfhosted.org>
2019-06-23 19:04:59eryksunlinkissue37380 messages
2019-06-23 19:04:59eryksuncreate