summaryrefslogtreecommitdiffstats
path: root/Lib/subprocess.py
Commit message (Collapse)AuthorAgeFilesLines
...
* Raise TypeError if bufsize argument is not an integer. Patch 1071755, ↵Peter Astrand2004-11-301-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