summaryrefslogtreecommitdiffstats
path: root/Doc/lib/libpopen2.tex
Commit message (Collapse)AuthorAgeFilesLines
* Deprecate os.popen* and popen2 module in favor of the subprocess module. ↵Neal Norwitz2007-05-111-0/+1
| | | | (forgot the doc)
* Lots of explicit class names for method and member descs.Georg Brandl2007-04-011-6/+6
|
* Its time to stop listing (Unix, Windows) when we really mean "everything but ↵Gregory P. Smith2007-03-141-1/+0
| | | | | | | | Mac OS 9" now that nobody is likely to use Python on Mac OS 9 and most of the (Mac) platform items are all OS X special API specific since OS X is unixy enough for these modules to be available out of the box.
* Point users to the subprocess module in the docs for os.system, os.spawn*, ↵Andrew M. Kuchling2006-10-271-4/+8
| | | | os.popen2, and the popen2 and commands modules
* Document that on Unix, the 'cmd' argument to the os.popen2/3/4 andJohannes Gijsbers2004-10-111-1/+5
| | | | | | | | | | popen2.popen2/3/4 functions can be a sequence. All texts are a variation on the following: On \UNIX, \var{cmd} may be a sequence, in which case arguments will be passed directly to the program without shell intervention (as with \function{os.spawnv()}). If \var{cmd} is a string it will be passed to the shell (as with \function{os.system()}).
* - make a module reference a hyperlinkFred Drake2004-08-091-2/+3
| | | | - wrap a long line
* [Bug #998066] Mention result mismatchAndrew M. Kuchling2004-08-071-0/+2
|
* [Bug #850818] Accept Gregory H. Ball's suggested rewrite of a confusing ↵Andrew M. Kuchling2003-12-231-3/+4
| | | | description
* Typo fixesAndrew M. Kuchling2003-02-061-2/+2
|
* Typo: "dead lock" --> "deadlock"Fred Drake2002-12-061-1/+1
|
* Typo: bites --> bytesFred Drake2002-06-181-1/+1
| | | | (Hanging around small kids too much...;)
* Add description of the deadlock problem with child processes and pipes, andFred Drake2002-06-181-0/+62
| | | | | hints about how to work around it. Closes SF bug #530637.
* Document clearly that the only way to retrieve the return code from theFred Drake2001-09-111-0/+7
| | | | | child processes is to use the Popen3 and Popen4 classes. This fixes SF bug #460512.
* Explain the exit code for the wait() method, including a reference toFred Drake2001-07-061-1/+6
| | | | | | the os.W*() functions used to interpret the return value. This fixes SF bug #429361.
* Updated documentation relating to the various flavors of popen[234]()Fred Drake2000-09-281-24/+49
| | | | for Windows & Unix.
* Tell what the result objects are (based on comment from the list).Fred Drake1999-08-191-4/+5
|
* Fix availability clause; mention availability of similar functionalityFred Drake1999-06-011-2/+5
| | | | for Windows using win32pipe.
* Document the "pid" attribute of the Popen3 class.Fred Drake1999-05-271-9/+12
| | | | | Use memberdesc instead of datadesc to document object attributes. This gets the index right.
* Fix availability declaration for popen2 module; report by Barry ScottFred Drake1999-04-131-1/+1
| | | | <barry@scottb.demon.co.uk>.
* Fixup the module keys. There were some problems with hosting / processingFred Drake1999-03-121-1/+1
| | | | file HTML files on Windows machines do to case insensitivity.
* "\platform{UNIX}" should really be spelled "\platform{Unix}".Fred Drake1999-03-021-1/+1
|
* Added \platform annotations.Fred Drake1999-03-021-8/+4
|
* Second definition of popen2 should be popen3.Guido van Rossum1998-08-131-1/+1
|
* New section header style.Fred Drake1998-08-101-1/+4
| | | | Fix up a few synopses.
* Added the popen2 synopsis.Fred Drake1998-07-271-1/+1
|
* Adjusted to use the new module synopsis support macros.Fred Drake1998-07-231-2/+4
|
* popen2 section for the library reference, contributed by Drew Csillag, withFred Drake1998-04-281-0/+71
some reorganization.