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 gregory.p.smith
Recipients Giovanni.Bajo, avian, bobbyi, gregory.p.smith, jcea, lesha, neologix, nirai, pitrou, sbt, sdaoden, vinay.sajip, vstinner
Date 2012-06-02.02:15:42
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1338603343.33.0.591196332157.issue6721@psf.upfronthosting.co.za>
In-reply-to
Content
subprocess has nothing to do with this bug.  subprocess is safe as of Python 3.2 (and the subprocess32 backport for 2.x).  Its preexec_fn argument is already documented as an unsafe legacy.  If you want to replace subprocess, go ahead, write something new and post it on pypi.  That is out of the scope of this issue.

Look at the original message I opened this bug with.  I *only* want to make the standard library use of locks not be a source of deadlocks as it is unacceptable for a standard library itself to force your code to adopt a threads only or a fork only programming style.  How we do that is irrelevant; I merely started the discussion with one suggestion.

Third party libraries are always free to hang their users however they see fit.

If you want to "log" something before deadlocking, writing directly to the stderr file descriptor is the best that can be done.  That is what exceptions that escape __del__ destructors do.

logging, http.cookiejar, _strptime  - all use locks that could be dealt with in a sane manner to avoid deadlocks after forking.

Queue, concurrent.futures & threading.Condition  - may not make sense to fix as these are pretty threading specific as is and should just carry the "don't fork" caveats in their documentation.


(My *real* preference would be to remove os.fork() from the standard library.  Not going to happen.)
History
Date User Action Args
2012-06-02 02:15:43gregory.p.smithsetrecipients: + gregory.p.smith, vinay.sajip, jcea, pitrou, vstinner, nirai, bobbyi, neologix, Giovanni.Bajo, sdaoden, sbt, avian, lesha
2012-06-02 02:15:43gregory.p.smithsetmessageid: <1338603343.33.0.591196332157.issue6721@psf.upfronthosting.co.za>
2012-06-02 02:15:42gregory.p.smithlinkissue6721 messages
2012-06-02 02:15:42gregory.p.smithcreate