summaryrefslogtreecommitdiff
path: root/Lib/subprocess.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-27448: Work around a gc.disable race condition in subprocess. (#1932)Gregory P. Smith2017-09-051-7/+29
* bpo-30418: Popen.communicate() always ignore EINVAL (#2002) (#2006)Victor Stinner2017-06-081-4/+5
* Issue #29335: Fix subprocess.Popen.wait() when the child process hasGregory P. Smith2017-01-221-1/+4
* Issue #28998: More APIs now support longs as well as ints.Serhiy Storchaka2016-12-271-6/+6
* Issue #26240: Clean up the subprocess module doc stringMartin Panter2016-10-261-377/+58
* issue26083: Avoid duplicate error message string from a subprocess exec failu...Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)2016-05-281-1/+1
* Issue #22274: Redirect stderr=STDOUT when stdout not redirected, by Akira LiMartin Panter2016-05-131-1/+4
* Fixes issue #26083: Workaround a subprocess bug that raised an incorrectGregory P. Smith2016-01-111-1/+5
* Fixes issue #20954: _args_from_interpreter_flags used by multiprocessingGregory P. Smith2015-12-131-1/+2
* Issue #19612: subprocess.communicate() now also ignores EINVAL when using atVictor Stinner2014-07-291-1/+9
* remove unnecessary word (closes #19060)Benjamin Peterson2014-03-121-1/+1
* issue12085: Use more Pythonic way to check _child_created.Serhiy Storchaka2014-02-101-4/+5
* Issue #18851: Avoid a double close of subprocess pipes when the child process...Antoine Pitrou2013-08-301-27/+46
* Issue #18763: subprocess: The file descriptors are now closed after calling theCharles-François Natali2013-08-251-4/+5
* #18705: fix a number of typos. Patch by Févry Thibault.Ezio Melotti2013-08-171-1/+1
* Issue #18186: remove obsolete 2.2 compatibility comment.Ned Deily2013-06-111-2/+0
* Issue #12098: multiprocessing on Windows now starts child processesKristján Valur Jónsson2013-03-191-0/+31
* Keep ref to ECHILD in local scope (#16650)Andrew Svetlov2012-12-241-2/+2
* Fix issue #16140 bug that the fix to issue #16327 added - don't doubleGregory P. Smith2012-11-111-3/+0
* Fixes issue #16327: The subprocess module no longer leaks file descriptorsGregory P. Smith2012-11-101-6/+27
* Fixes issue #14396: Handle the odd rare case of waitpid returning 0Gregory P. Smith2012-11-101-2/+6
* Issue #15756: subprocess.poll() now properly handles errno.ECHILD toGregory P. Smith2012-09-291-1/+8
* Issue #14252: Fix subprocess.Popen.terminate() to not raise an error under Wi...Antoine Pitrou2012-03-111-1/+11
* Issue #12786: Set communication pipes used by subprocess.Popen CLOEXEC to avoidCharles-François Natali2011-08-251-6/+16
* Issue #12650: Fix a race condition where a subprocess.Popen could leakCharles-François Natali2011-08-181-1/+1
* Issue #12607: In subprocess, fix issue where if stdin, stdout or stderr isRoss Lagerwall2011-07-271-0/+8
* Issue #12493: subprocess: communicate() handles EINTRVictor Stinner2011-07-051-3/+3
* Close #12085: Fix an attribute error in subprocess.Popen destructor if theVictor Stinner2011-06-011-1/+4
* whitespace fixBrian Curtin2011-04-291-1/+1
* mergeBrian Curtin2011-04-291-2/+9
* Issue #10963: Ensure that subprocess.communicate() never raises EPIPE.Ross Lagerwall2011-04-051-11/+34
* #11565: Fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-161-1/+1
* Merged revisions 87695 via svnmerge fromAntoine Pitrou2011-01-031-17/+24
* Merged revisions 87233 via svnmerge fromGregory P. Smith2010-12-141-2/+14
* Merged revisions 84582 via svnmerge fromBrian Curtin2010-09-071-1/+1
* Merged revisions 84559 via svnmerge fromBrian Curtin2010-09-061-1/+1
* #2304: fix incorporating Eric Smith's .format suggestion and tested on Ubuntu...Tim Golden2010-08-121-2/+2
* revert 83832; unix test breakageBenjamin Peterson2010-08-081-1/+1
* Issue #2304: Add additional quotes when using cmd shell on Windows. Original ...Tim Golden2010-08-081-1/+1
* Issue #3210: Revert C module changes and apply patch from Hirokazu Yamamoto i...Tim Golden2010-08-081-14/+13
* Issue #9265: Incorrect name passed as arg[0] when shell=TrueStefan Krah2010-07-191-0/+2
* Revert r60115Jean-Paul Calderone2010-06-181-3/+3
* Fix regression introduced by r81154 (Issue #5099, subprocess destructor)Victor Stinner2010-05-141-3/+3
* subprocess.Popen.__del__ referenced global objects, which is a no-no thanks toBrett Cannon2010-05-141-17/+34
* Revert an accidental commit from r80492.Brett Cannon2010-04-251-36/+17
* When DeprecationWarning was silenced by default, it also silenced any use of -QBrett Cannon2010-04-251-17/+36
* Fix #7838. Add docstrings and privatize _subprocess implementation details.Brian Curtin2010-04-241-47/+39
* Implement #1220212. Add os.kill support for Windows.Brian Curtin2010-04-021-0/+4
* Fix syntax: "rc != None" -> "rc is not None"Florent Xicluna2010-03-081-1/+1
* Issue #1068268: The subprocess module now handles EINTR in internalGregory P. Smith2010-03-011-3/+14