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 gaul
Recipients
Date 2003-10-01.18:48:03
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Plug popen2.popen[234] leak (see bug #768649 for
discussion).  Handle os.{pipe,fork} exceptions (see bug
#761888).  Change class variables into instance
variables, allowing following code to work properly:

from popen2 import Popen3
p1 = Popen3('ls')
p1.fromchild.read()
Popen3('ls').fromchild.read()
Popen3('ls').fromchild.read()
p1.wait()

Update docstrings to mention popen4 and warn about
mixing Popen3 objects and threading.  Expand on MAX_FD
comment.
History
Date User Action Args
2007-08-23 15:29:24adminlinkissue816059 messages
2007-08-23 15:29:24admincreate