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.

classification
Title: error in popen2() reference
Type: Stage:
Components: Documentation Versions: Python 2.4
process
Status: closed Resolution: not a bug
Dependencies: Superseder:
Assigned To: Nosy List: georg.brandl, lolxp
Priority: normal Keywords:

Created on 2005-07-30 17:51 by lolxp, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg25903 - (view) Author: Lorenzo Luengo (lolxp) Date: 2005-07-30 17:51
http://www.python.org/doc/2.4/lib/module-popen2.html
says:
popen2(  	cmd[, bufsize[, mode]])
    Executes cmd as a sub-process. Returns the file
objects (child_stdout, child_stdin).

must say:
popen2(  	cmd[, bufsize[, mode]])
    Executes cmd as a sub-process. Returns the file
objects (child_stdin, child_stdout).

msg25904 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2005-07-30 18:39
Logged In: YES 
user_id=1188172

The docs are correct. Note that the popen2.popen2 method has
a different return value than os.popen2.
History
Date User Action Args
2022-04-11 14:56:12adminsetgithub: 42229
2005-07-30 17:51:32lolxpcreate