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 sbt, tim.golden, vstinner
Date 2014-04-30.10:00:22
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1398852023.33.0.447842390127.issue21384@psf.upfronthosting.co.za>
In-reply-to
Content
On Windows, handles are created non-inheritable by default, but I would prefer to double check.

The tool "Handle" can be used to list all open handles of a process:
http://technet.microsoft.com/en-us/sysinternals/bb896655.aspx

To test that all handles are non-inheritable: run all Python unit tests, create a subprocesss with close_fds=False, list open handles of the child process and check that the list of not longer than a fresh Python process.
History
Date User Action Args
2014-04-30 10:00:23vstinnersetrecipients: + vstinner, tim.golden, sbt
2014-04-30 10:00:23vstinnersetmessageid: <1398852023.33.0.447842390127.issue21384@psf.upfronthosting.co.za>
2014-04-30 10:00:23vstinnerlinkissue21384 messages
2014-04-30 10:00:22vstinnercreate