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 castironpi
Recipients castironpi, ggenellina
Date 2009-01-14.08:41:49
SpamBayes Score 0.00012120103
Marked as misclassified No
Message-id <1231922511.54.0.921337513981.issue4708@psf.upfronthosting.co.za>
In-reply-to
Content
This is currently accomplished in 'multiprocessing.forking' with a
'duplicate' function.

Use (line #213):
    rfd, wfd = os.pipe()
    
    # get handle for read end of the pipe and make it inheritable
    rhandle = duplicate(msvcrt.get_osfhandle(rfd), inheritable=True)

Definition (line #192).

Should it be included in the public interface and documented, or perhaps
a public entry point to it made?
History
Date User Action Args
2009-01-14 08:41:51castironpisetrecipients: + castironpi, ggenellina
2009-01-14 08:41:51castironpisetmessageid: <1231922511.54.0.921337513981.issue4708@psf.upfronthosting.co.za>
2009-01-14 08:41:50castironpilinkissue4708 messages
2009-01-14 08:41:49castironpicreate