summaryrefslogtreecommitdiff
path: root/Lib/popen2.py
Commit message (Expand)AuthorAgeFilesLines
* Use os.closerange() in popen2.Georg Brandl2008-02-231-5/+1
* #1591: Clarify docstring of Popen3.Georg Brandl2008-01-061-2/+2
* Deprecate os.popen* and popen2 module in favor of the subprocess module.Neal Norwitz2007-05-111-0/+3
* Patch #1676994: Refactor test_popen2 to use unittest.Collin Winter2007-03-161-42/+0
* Fix check for empty list (vs. None).Georg Brandl2006-07-211-1/+1
* Applied patch #1506758: Prevent MemoryErrors with large MAXFD.Peter Astrand2006-06-221-1/+1
* Guard the _active.remove() call to avoid errors when there is no _active list.Georg Brandl2006-05-251-2/+3
* Clarify cases when waitpid might not return self.pid.Martin v. Löwis2006-03-241-2/+5
* Bug #1183780: Add Popen objects to _active only in __del__.Martin v. Löwis2006-03-241-7/+19
* Preserve command name, for later printing of activeMartin v. Löwis2006-03-231-0/+4
* 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