]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
popen4(), class Popen4: popen4() support for Unix.
authorFred Drake <fdrake@acm.org>
Thu, 28 Sep 2000 19:07:53 +0000 (19:07 +0000)
committerFred Drake <fdrake@acm.org>
Thu, 28 Sep 2000 19:07:53 +0000 (19:07 +0000)
commitd75e63a865b451c24e1a0516744a98d59691b4ff
treedd788aae5815b3456a5d626b88d3abd5f21c1ed2
parent38cb9f1f174415d3b37fbaeb5d152d65525839d2
popen4(), class Popen4:  popen4() support for Unix.

popen2(), popen3():  Reversed order of bufsize and mode parameters to
                     comply with what was here before (Python 1.5.2).

class Popen3:  Factored the __init__() into a more basic initializer and
               a helper method, to allow some re-use by the Popen4 class.
               Use os.dup2() instead of os.dup() to create the proper
               file descriptors in the child process.

This closes SourceForge bug #115330 and partially closes #115353.
Lib/popen2.py