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 Mirko Friedenhagen, ned.deily, ronaldoussoren, vstinner
Date 2017-10-19.12:41:12
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1508416872.9.0.213398074469.issue31818@psf.upfronthosting.co.za>
In-reply-to
Content
Confirmation from Apple:

https://developer.apple.com/library/content/technotes/tn2083/_index.html#//apple_ref/doc/uid/DTS10003794-CH1-SUBSECTION52

"""
Many Mac OS X frameworks do not work reliably if you call fork but do not call exec. The only exception is the System framework and, even there, the POSIX standard places severe constraints on what you can do between a fork and an exec.
(...)
Listing 13  Core Foundation complaining about fork-without-exec

The process has forked and you cannot use this CoreFoundation \
functionality safely. You MUST exec().
Break on __THE_PROCESS_HAS_FORKED_AND_YOU_CANNOT_USE_THIS_\
COREFOUNDATION_FUNCTIONALITY___YOU_MUST_EXEC__() to debug.
"""
History
Date User Action Args
2017-10-19 12:41:13vstinnersetrecipients: + vstinner, ronaldoussoren, ned.deily, Mirko Friedenhagen
2017-10-19 12:41:12vstinnersetmessageid: <1508416872.9.0.213398074469.issue31818@psf.upfronthosting.co.za>
2017-10-19 12:41:12vstinnerlinkissue31818 messages
2017-10-19 12:41:12vstinnercreate