summaryrefslogtreecommitdiffstats
path: root/Lib/subprocess.py
Commit message (Collapse)AuthorAgeFilesLines
* Applied patch #1506758: Prevent MemoryErrors with large MAXFD. Backport of ↵Peter Astrand2006-06-221-1/+1
| | | | 47077.
* Bug #1500293: fix memory leaks in _subprocess module.Georg Brandl2006-06-041-5/+5
| | | | (backport from rev. 46651)
* Changed header to match the HEAD version:Peter Astrand2005-09-231-20/+4
| | | | | | | * Added note about Python 2.2 compatibility. * Changed license header: Now simply referring to PSF. This closes bug 1138653.
* Corrected bug in list2cmdline wrt backslashes. Fixes #1083306.Peter Astrand2005-03-031-0/+1
|
* On UNIX, when the execution of the child fails, we must waitpid() toPeter Astrand2005-01-011-0/+1
| | | | prevent leaving zombies.
* Raise TypeError if bufsize argument is not an integer. Patch 1071755, ↵Peter Astrand2004-12-051-0/+3
| | | | slightly modified.
* Corrected example for replacing shell pipeline. Fixes bug 1073790.Peter Astrand2004-11-301-1/+1
|
* When using shell=True on Windows, don't display a shell window by default. ↵Peter Astrand2004-11-071-11/+14
| | | | Fixes #1057061.
* Fix docstring formatting of escape sequences.Raymond Hettinger2004-10-171-1/+1
|
* return codes are available on all platforms, not just on UnixFredrik Lundh2004-10-171-4/+3
|
* Replace dynamic try/except with "if 0", to keep py2exe happy. If youFredrik Lundh2004-10-131-10/+10
| | | | want to use pywin32 instead of _subprocess, you have to edit the file.
* Folded long lines.Tim Peters2004-10-131-23/+42
|
* Whitespace normalization.Tim Peters2004-10-121-24/+22
|
* Typo fixAndrew M. Kuchling2004-10-121-1/+1
|
* Added Peter Astrand's subprocess module.Fredrik Lundh2004-10-121-0/+1141