summaryrefslogtreecommitdiffstats
path: root/Lib/subprocess.py
Commit message (Expand)AuthorAgeFilesLines
* #18705: fix a number of typos. Patch by Févry Thibault.Ezio Melotti2013-08-171-1/+1
* Cleanup of documentation change from #17860Ronald Oussoren2013-07-071-0/+3
* Prevent a possible double close of parent pipe fds when the subprocessGregory P. Smith2013-06-161-18/+25
* Fixes issue #17488: Change the subprocess.Popen bufsize parameter default valueGregory P. Smith2013-03-231-9/+9
|\
| * Fixes issue #17488: Change the subprocess.Popen bufsize parameter default valueGregory P. Smith2013-03-231-9/+9
* | mergeGregory P. Smith2013-03-211-4/+3
|\ \ | |/
| * remove the long obsolete mention of universal newlines mode only beingGregory P. Smith2013-03-211-4/+3
| * Issue #16903: Popen.communicate() on Unix now accepts strings whenSerhiy Storchaka2013-02-041-0/+4
* | Use a larger amount of data for tests such as the interrupted_writeGregory P. Smith2013-03-201-2/+5
* | Keep ref to ECHILD in local scope (#16650)Andrew Svetlov2012-12-241-2/+2
|\ \ | |/
| * Keep ref to ECHILD in local scope (#16650)Andrew Svetlov2012-12-241-2/+2
* | Fixes issue #16140: The subprocess module no longer double closes itsGregory P. Smith2012-11-111-3/+0
|\ \ | |/
| * Fixes issue #16140: The subprocess module no longer double closes itsGregory P. Smith2012-11-111-3/+0
* | Remove the subprocess "bad exception data" warning (formerly a print!)Gregory P. Smith2012-11-111-3/+2
|\ \ | |/
| * Remove the subprocess "bad exception data" warning (formerly a print!)Gregory P. Smith2012-11-111-3/+2
* | Rename a local variable for readability and change a "this can'tGregory P. Smith2012-11-111-6/+8
|\ \ | |/
| * Rename a local variable for readability and change a "this can'tGregory P. Smith2012-11-111-6/+8
* | Fixes issue #16327: The subprocess module no longer leaks file descriptorsGregory P. Smith2012-11-111-3/+17
|\ \ | |/
| * Fixes issue #16327: The subprocess module no longer leaks file descriptorsGregory P. Smith2012-11-111-3/+17
* | Fixes issue #14396: Handle the odd rare case of waitpid returning 0Gregory P. Smith2012-11-111-3/+7
|\ \ | |/
| * Fixes issue #14396: Handle the odd rare case of waitpid returning 0 whenGregory P. Smith2012-11-111-2/+6
* | Fixes Issue #16114: The subprocess module no longer provides aGregory P. Smith2012-10-101-1/+9
|\ \ | |/
| * Fixes Issue #16114: The subprocess module no longer provides aGregory P. Smith2012-10-101-1/+13
* | Fixes issue #15756: subprocess.poll() now properly handles errno.ECHILDGregory P. Smith2012-09-291-1/+8
|\ \ | |/
| * Fixes issue #15756: subprocess.poll() now properly handles errno.ECHILDGregory P. Smith2012-09-291-1/+8
* | Issue #15595: Fix subprocess.Popen(universal_newlines=True)Andrew Svetlov2012-08-191-2/+2
|\ \ | |/
| * Issue #15595: Fix subprocess.Popen(universal_newlines=True)Andrew Svetlov2012-08-191-2/+2
* | Use Thread.is_alive() instead of old-style Thread.isAlive() in subprocess.Andrew Svetlov2012-08-191-2/+2
* | Cleanup universal_newlines usage for subprocess.Popen, remove unused param.Andrew Svetlov2012-08-151-4/+4
* | Issue #15592. Fix regression: subprocess.communicate() breaks on no input wit...Andrew Svetlov2012-08-141-12/+13
|\ \ | |/
* | Close #14690: Use monotonic clock instead of system clock in the sched,Victor Stinner2012-05-301-4/+8
* | Implemented PEP 405 (Python virtual environments).Vinay Sajip2012-05-261-1/+1
* | Move private function _args_from_interpreter_flags() to subprocess.py, soAntoine Pitrou2012-05-181-0/+31
* | Issue #11750: The Windows API functions scattered in the _subprocess andAntoine Pitrou2012-04-181-37/+69
* | Issue #14252: Fix subprocess.Popen.terminate() to not raise an error under Wi...Antoine Pitrou2012-03-111-1/+9
|\ \ | |/
| * Issue #14252: Fix subprocess.Popen.terminate() to not raise an error under Wi...Antoine Pitrou2012-03-111-1/+11
* | Use InterruptedError instead of checking for EINTRAntoine Pitrou2011-10-231-4/+2
* | Issue #12494: Close pipes and kill process on error in subprocess functionsVictor Stinner2011-09-011-22/+34
* | Issue #12650: Fix a race condition where a subprocess.Popen could leakCharles-François Natali2011-08-181-1/+6
|\ \ | |/
| * Issue #12650: Fix a race condition where a subprocess.Popen could leakCharles-François Natali2011-08-181-1/+6
| * Issue #12607: In subprocess, fix issue where if stdin, stdout or stderr isRoss Lagerwall2011-07-271-0/+8
* | Issue #12591: Improve support of "universal newlines" in the subprocessAntoine Pitrou2011-07-231-1/+1
|\ \ | |/
| * Issue #12591: Improve support of "universal newlines" in the subprocessAntoine Pitrou2011-07-231-1/+1
* | (merge 3.2) Issue #12493: subprocess: communicate() handles EINTRVictor Stinner2011-07-051-3/+3
|\ \ | |/
| * Issue #12493: subprocess: communicate() handles EINTRVictor Stinner2011-07-051-3/+3
* | (merge 3.2) Close #12383: Fix subprocess module with env={}: don't copy theVictor Stinner2011-06-211-1/+1
|\ \ | |/
| * Close #12383: Fix subprocess module with env={}: don't copy the environmentVictor Stinner2011-06-211-1/+1
* | (Merge 3.2) Close #12085: Fix an attribute error in subprocess.Popen destructorVictor Stinner2011-05-311-1/+4
|\ \ | |/
| * Close #12085: Fix an attribute error in subprocess.Popen destructor if theVictor Stinner2011-05-311-1/+4
| * normalize whitespace.Gregory P. Smith2011-05-121-1/+1