[issue1236] subprocess is not thread-safe

2010-11-08 Thread Chris Gerhard
Changes by Chris Gerhard chris.gerh...@oracle.com: -- nosy: +Chris.Gerhard ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1236 ___ ___

[issue1236] subprocess is not thread-safe

2007-10-05 Thread Guido van Rossum
Guido van Rossum added the comment: This is a duplicate of bug# 1731717. I asked Donovan Baarda, who told me: Last time I looked this had been fixed, admittedly in a bit of an ugly way, on the svn head. I offered to do a patch to make it a bit cleaner, but as it isn't really broken anymore it

[issue1236] subprocess is not thread-safe

2007-10-04 Thread Kenneth Duda
New submission from Kenneth Duda: The following test program crashes: import threading, sys, subprocess # subprocess._cleanup = lambda: None def doit(): for i in xrange(0, 1000): p = subprocess.Popen( true ) p.wait() t =