1 message in org.python.python-bugs-list[ python-Bugs-918710 ] popen2 returns...
FromSent OnAttachments
SourceForge.netMar 18, 2004 7:44 am 
Actions with this message:
Paste this link in email or IM:
Paste this link in email or IM:
Atom feed for this thread
Paste this URL into your reader:
Subject:[ python-Bugs-918710 ] popen2 returns (out, in) not (in, out)Actions...
From:SourceForge.net (nore@sourceforge.net)
Date:Mar 18, 2004 7:44:20 am
List:org.python.python-bugs-list

Bugs item #918710, was opened at 2004-03-18 14:44 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105470&aid=918710&group_id=5470

Category: Documentation Group: None Status: Open Resolution: None Priority: 5 Submitted By: Yotam Medini (yotam) Assigned to: Nobody/Anonymous (nobody) Summary: popen2 returns (out, in) not (in, out)

Initial Comment: http://python.org/doc/current/lib/os-newstreams.html#l2h-1379 says:

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

But for me it actually returns (child-output, child-input). Or... is it a semantci issue? that is child_stdin - is "the input _from_ child?" Anyway - it is confusing.

----------------------------------------------------------------------