| commit | d75e63a865b451c24e1a0516744a98d59691b4ff | [log] [tgz] |
|---|---|---|
| author | Fred Drake <fdrake@acm.org> | Thu Sep 28 19:07:53 2000 +0000 |
| committer | Fred Drake <fdrake@acm.org> | Thu Sep 28 19:07:53 2000 +0000 |
| tree | dd788aae5815b3456a5d626b88d3abd5f21c1ed2 | |
| parent | 38cb9f1f174415d3b37fbaeb5d152d65525839d2 [diff] |
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.