summaryrefslogtreecommitdiffstats
path: root/Lib/subprocess.py
Commit message (Expand)AuthorAgeFilesLines
* fix subprocess on Windows (#391)Benjamin Peterson2017-03-021-1/+1
* allow path-like objects to be cwd on windows (#389)Benjamin Peterson2017-03-021-1/+1
* bpo-26128: Added __init__to subprocess.STARTUPINFO (#171)Subhendu Ghosh2017-02-251-5/+7
* Issue #29335: Fix subprocess.Popen.wait() when the child process hasGregory P. Smith2017-01-231-1/+4
|\
| * Issue #29335: Fix subprocess.Popen.wait() when the child process hasGregory P. Smith2017-01-231-1/+4
| |\
| | * Issue #29335: Fix subprocess.Popen.wait() when the child process hasGregory P. Smith2017-01-231-1/+4
* | | Merge 3.6Victor Stinner2017-01-061-3/+3
|\ \ \ | |/ /
| * | Fix subprocess.Popen.__del__() fox Python shutdownVictor Stinner2017-01-061-3/+3
* | | Issue #16255: subrocess.Popen uses /system/bin/sh on Android as the shell,Xavier de Gaye2016-12-131-1/+4
* | | Issue #20572: Remove the subprocess.Popen.wait endtime parameter.Gregory P. Smith2016-11-211-13/+4
|\ \ \ | |/ /
| * | Issue #20572: The subprocess.Popen.wait method's undocumented endtimeGregory P. Smith2016-11-211-2/+9
|/ /
* | Issue #26240: Merge subprocess doc string from 3.5 into 3.6Martin Panter2016-10-251-340/+81
|\ \ | |/
| * Issue #26240: Clean up the subprocess module doc stringMartin Panter2016-10-251-348/+79
* | Issue #6135: Adds encoding and errors parameters to subprocessSteve Dower2016-09-071-42/+45
* | subprocess: enhance ResourceWarning messageVictor Stinner2016-06-141-3/+4
* | merge from 3.5 - Fixes Issue #26373: subprocess.Popen.communicateGregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)2016-06-041-5/+18
|\ \ | |/
| * Fixes Issue #26373: subprocess.Popen.communicate now correctly ignoresGregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)2016-06-041-5/+18
* | Issue #27167: Clarify the subprocess.CalledProcessError error message textGregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)2016-06-031-4/+15
* | subprocess now emits a ResourceWarning warningVictor Stinner2016-05-201-0/+3
* | Issue #26741: POSIX implementation of subprocess.Popen._execute_child() nowVictor Stinner2016-05-201-1/+6
* | Issue #22274: Merge stderr=STDOUT fix from 3.5Martin Panter2016-05-131-1/+4
|\ \ | |/
| * Issue #22274: Redirect stderr=STDOUT when stdout not redirected, by Akira LiMartin Panter2016-05-131-1/+4
* | Issue #26782: Add STARTUPINFO to subprocess.__all__ on WindowsMartin Panter2016-04-161-1/+2
* | subprocess._optim_args_from_interpreter_flags()Victor Stinner2016-01-181-2/+12
|/
* * Re-fix issue #19284: Don't generate the no-op -R command lineGregory P. Smith2015-12-141-3/+0
|\
| * Re-fix issue #19284: Don't generate the no-op -R command lineGregory P. Smith2015-12-141-3/+0
* | Fix issue #6973: When we know a subprocess.Popen process has died, doGregory P. Smith2015-11-161-7/+12
|\ \ | |/
| * Fix issue #6973: When we know a subprocess.Popen process has died, doGregory P. Smith2015-11-161-7/+12
* | Add a subprocess.run() function than returns a CalledProcess instance for aGregory P. Smith2015-04-141-16/+108
* | issue10838: Rename the subprocess.mswindows internal global to _mswindows.Gregory P. Smith2015-04-071-6/+6
* | Addresses Issue #10838: The subprocess now module includesGregory P. Smith2015-04-071-1/+4
* | Issue #21619: Popen objects no longer leave a zombie after exit in the withSerhiy Storchaka2015-02-281-4/+6
|\ \ | |/
| * Issue #21619: Popen objects no longer leave a zombie after exit in the withSerhiy Storchaka2015-02-281-4/+6
* | Issue #23285: PEP 475 -- Retry system calls failing with EINTR.Charles-François Natali2015-02-071-13/+5
* | Closes #23234: Refactor subprocessVictor Stinner2015-01-141-34/+24
* | Issue #21332: Ensure that ``bufsize=1`` in subprocess.Popen() selects line bu...Antoine Pitrou2014-09-211-1/+2
|\ \ | |/
| * Issue #21332: Ensure that ``bufsize=1`` in subprocess.Popen() selects line bu...Antoine Pitrou2014-09-211-1/+2
* | Issue #22043: time.monotonic() is now always availableVictor Stinner2014-09-021-4/+1
* | Issue #22033: Reprs of most Python implemened classes now contain actualSerhiy Storchaka2014-07-251-1/+1
* | Remove the obsolete MAXFD constant and Popen._close_fds() method.Gregory P. Smith2014-06-011-14/+0
* | subprocess's Popen.wait() is now thread safe so that multiple threadsGregory P. Smith2014-04-231-10/+40
|\ \ | |/
| * subprocess's Popen.wait() is now thread safe so that multiple threadsGregory P. Smith2014-04-231-10/+40
* | #10481: describe universal_newlines' effect on communicate()/check_output() o...Andrew Kuchling2014-04-141-11/+27
|/
* Issue #20976: pyflakes: Remove unused importsVictor Stinner2014-03-201-2/+0
* merge 3.3 (#19060)Benjamin Peterson2014-03-131-1/+1
|\
| * remove unnecessary word (closes #19060)Benjamin Peterson2014-03-131-1/+1
* | (Merge 3.3) Issue #19612: On Windows, subprocess.Popen.communicate() nowVictor Stinner2014-02-181-1/+9
|\ \ | |/
| * Issue #19612: On Windows, subprocess.Popen.communicate() now ignoresVictor Stinner2014-02-181-1/+9
* | issue12085: Use more Pythonic way to check _child_created.Serhiy Storchaka2014-02-101-7/+6
|\ \ | |/
| * issue12085: Use more Pythonic way to check _child_created.Serhiy Storchaka2014-02-101-7/+6