summaryrefslogtreecommitdiffstats
path: root/Lib/popen2.py
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 55328-55341 via svnmerge fromGuido van Rossum2007-05-151-205/+0
* Merged revisions 55325-55327 via svnmerge fromGuido van Rossum2007-05-141-0/+3
* Merged revisions 55007-55179 via svnmerge fromGuido van Rossum2007-05-071-1/+1
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-42/+0
* Fix most trivially-findable print statements.Guido van Rossum2007-02-091-3/+3
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-2/+2
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-2/+3
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-9/+28
* Fix typoAndrew M. Kuchling2005-02-101-1/+1
* Document that on Unix, the 'cmd' argument to the os.popen2/3/4 andJohannes Gijsbers2004-10-111-22/+44
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-121-3/+3
* Patch #817329: Use SC_OPEN_MAX to determine MAXFD. Backported to 2.3.Martin v. Löwis2003-10-061-1/+4
* Use Boolean values for the capturestderr flag.Fred Drake2003-07-071-3/+3
* When a previous call to poll() has already seen the process status,Guido van Rossum2003-06-021-4/+5
* Remove uses of the string and types modules:Walter Dörwald2002-06-031-2/+1
* tighten up except - os.close only raises OSErrorSkip Montanaro2002-03-241-1/+1
* back out spurious change from 1.22Skip Montanaro2002-03-121-1/+1
* Popen3 and Popen4 should be in __all__Skip Montanaro2002-03-121-1/+1
* OS/2 EMX port Library and regression test changes:Andrew MacIntyre2002-02-241-1/+1
* Patch #487784: Support Unicode commands in popen3/4 handling on UNIX.Martin v. Löwis2001-12-021-1/+2
* Whitespace normalization.Tim Peters2001-02-091-1/+1
* a few more __all__ listsSkip Montanaro2001-02-071-1/+4
* test_popen2 broke on Windows shortly after 2.0b2 was released. Fixed it.Tim Peters2000-10-031-1/+1
* popen4(), class Popen4: popen4() support for Unix.Fred Drake2000-09-281-49/+64
* The "more" cmd varies across Windows flavors, sometimes adding strayTim Peters2000-09-011-7/+16
* Added os.popen2() and os.popen3() for non-Windows platforms.Fred Drake2000-08-281-3/+5
* Changed the popen2.py _test function to use the "more" cmd whenTim Peters2000-08-201-5/+10
* remove prints of file objects from _testJeremy Hylton2000-07-101-2/+0
* - changed the nt.popen2 return values back toFredrik Lundh2000-07-091-10/+25
* - added popen.popen2/popen3/popen4 support forFredrik Lundh2000-07-091-15/+39
* More trivial comment -> docstring transformations by Ka-Ping Yee,Guido van Rossum2000-02-041-0/+27
* Calling _cleanup() does not guarantee that all processes haveGuido van Rossum1999-04-201-1/+2
* Mass check-in after untabifying all files that need it.Guido van Rossum1998-03-261-55/+55
* Add optional bufsize argument to various calls so we can make theGuido van Rossum1997-09-291-8/+8
* The command can now either be a string (as before) or a list ofGuido van Rossum1997-09-181-3/+4
* Rewrite using class, to make waiting for processes possible;Guido van Rossum1997-08-111-31/+79
* Change inspired by Tommy Burnette to add an interface to get stderr, too.Guido van Rossum1997-04-211-4/+19
* pass the command to sh -cGuido van Rossum1995-08-071-1/+1
* new filesGuido van Rossum1995-01-121-0/+35