summaryrefslogtreecommitdiff
path: root/Lib/subprocess.py
Commit message (Expand)AuthorAgeFilesLines
* 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
* No need to assign the results of expressions used only for side effects.Georg Brandl2010-02-061-1/+1
* #7381: consistency update, and backport avoiding ``None >= 0`` check from py3k.Georg Brandl2009-12-281-4/+6
* #7381: subprocess documentation and library docstring consistency fixes.Georg Brandl2009-12-201-9/+9
* Issue 7294: Fixed URL in a comment.Eric Smith2009-11-091-1/+3
* #5329: fix os.popen* regression from 2.5: don't execute commands as a sequencePhilip Jenvey2009-09-291-15/+41
* Revert r74028.Georg Brandl2009-07-161-2/+2
* #6482: simplify "except: raise" to "finally:".Georg Brandl2009-07-161-2/+2
* #6447: typo in subprocess docstringAmaury Forgeot d'Arc2009-07-101-2/+2
* #6416: Fix compilation of the select module on Windows, as well as test_subpr...Amaury Forgeot d'Arc2009-07-091-5/+6
* Use select.poll() in subprocess, when available, rather than select() so thatGregory P. Smith2009-07-041-35/+96
* Issue #6274. Fixed a potential FD leak in subprocess.py.Facundo Batista2009-06-191-82/+90
* #6189: The subprocess.py module should be kept compatible with python 2.2Amaury Forgeot d'Arc2009-06-181-3/+12
* Issue #5179: Fixed subprocess handle leak on failure on windows.Hirokazu Yamamoto2009-03-031-32/+15
* Issue #5341: Fix a variety of spelling errors.Mark Dickinson2009-02-211-2/+2
* #5179: don't leak PIPE fds when child execution fails.Georg Brandl2009-02-141-0/+3
* rename the new check_call_output to check_output. its less ugly.Gregory P. Smith2008-12-051-11/+11
* Adds a subprocess.check_call_output() function to return the output from aGregory P. Smith2008-12-041-12/+60
* Remove warnings generated for the suprocess module when run under -3. RequiredBrett Cannon2008-08-081-7/+8
* - Issue #1857: subprocess.Popen.poll gained an additional _deadstate keywordGregory P. Smith2008-08-041-4/+8
* - Issue #2113: Fix error in subprocess.Popen if the select system call isGregory P. Smith2008-07-061-1/+6
* Fixes issue2791: subprocess.Popen.communicate leaked a file descripton untilGregory P. Smith2008-05-261-0/+2
* Added kill, terminate and send_signal to subprocess.PopenChristian Heimes2008-04-191-0/+32
* Fix issue 1300: Quote command line arguments that contain a '|' character inGregory P. Smith2008-01-191-3/+3
* Undo an unnecessary else: and indentation that r60104 added.Gregory P. Smith2008-01-191-58/+57
* Fixes issue1336 - a race condition could occur when forking if the gcGregory P. Smith2008-01-191-58/+71
* fix comment typos, use not arg instead of arg == "", add test coverageGregory P. Smith2008-01-191-3/+3
* #1663329: add os.closerange() to close a range of fds,Georg Brandl2008-01-191-7/+2
* Applied patch 1669481, slightly modified: Support close_fds on Win32Peter Astrand2007-05-261-5/+4