summaryrefslogtreecommitdiffstats
path: root/Lib/subprocess.py
Commit message (Expand)AuthorAgeFilesLines
* Merge with 3.1Ross Lagerwall2011-04-051-11/+34
|\
| * Issue #10963: Ensure that subprocess.communicate() never raises EPIPE.Ross Lagerwall2011-04-051-11/+34
* | Issue #11459: A `bufsize` value of 0 in subprocess.Popen() really createsAntoine Pitrou2011-03-191-2/+0
|\ \ | |/
| * Issue #11459: A `bufsize` value of 0 in subprocess.Popen() really createsAntoine Pitrou2011-03-191-2/+0
* | #11565: Merge with 3.1.Ezio Melotti2011-03-161-1/+1
|\ \ | |/
| * #11565: Fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-161-1/+1
| * Merged revisions 87695 via svnmerge fromAntoine Pitrou2011-01-031-16/+21
| * Merged revisions 87233 via svnmerge fromGregory P. Smith2010-12-141-2/+14
| * Merged revisions 76923,76926,77009,77082-77083,77085,77087,77121 via svnmerge...Georg Brandl2010-10-061-16/+15
| * #2304: fix incorporating Eric Smith's .format suggestion and tested on Ubuntu...Tim Golden2010-08-121-1/+1
| * revert r83831, 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
| * Merged revisions 82971 via svnmerge fromStefan Krah2010-07-191-0/+2
| * Merged revisions 82076 via svnmerge fromJean-Paul Calderone2010-06-181-3/+3
| * Merged revisions 81181 via svnmerge fromVictor Stinner2010-05-141-3/+3
| * Backport r81155.Brett Cannon2010-05-141-16/+33
| * Merged revisions 80441 via svnmerge fromBrian Curtin2010-04-241-47/+39
| * Merged revisions 78524 via svnmerge fromGregory P. Smith2010-03-011-3/+13
| * Merged revisions 76170 via svnmerge fromEric Smith2009-11-091-1/+3
| * Merged revisions 73917 via svnmerge fromGregory P. Smith2009-08-131-5/+6
| * Recorded merge of revisions 74057 via svnmerge fromGeorg Brandl2009-08-131-2/+2
| * Merged revisions 73833,73838,73850-73852,73856-73857 via svnmerge fromGeorg Brandl2009-08-131-29/+100
* | In subprocess, wrap pipe fds before launching the child. Hopefully thisAntoine Pitrou2011-01-041-7/+21
* | Un-complicate some codeAntoine Pitrou2011-01-031-15/+5
* | Issue #10806, issue #9905: Fix subprocess pipes when some of the standardAntoine Pitrou2011-01-031-25/+27
* | Issue #10763: subprocess.communicate() closes stdout and stderr if both areVictor Stinner2010-12-251-0/+1
* | Issue #1731717: Fixed the problem where subprocess.wait() could cause anGregory P. Smith2010-12-141-2/+14
* | Issue #6559: fix the subprocess.Popen pass_fds implementation. Add a unittest.Gregory P. Smith2010-12-141-19/+28
* | issue7213: Open the pipes used by subprocesses with the FD_CLOEXEC flag fromGregory P. Smith2010-12-131-15/+21
* | Get rid of the close_fds DeprecationWarning. Changes the default on a perGregory P. Smith2010-12-131-20/+19
* | clarify the docs and new warning message.Gregory P. Smith2010-12-041-2/+2
* | issue6559: Adds a pass_fds parameter to subprocess.Popen that allows the callerGregory P. Smith2010-12-041-6/+32
* | issue7213 + issue2320: Cause a DeprecationWarning if the close_fds argument isGregory P. Smith2010-12-041-2/+11
* | Fix #10554. Added context manager support to Popen objects.Brian Curtin2010-12-031-0/+10
* | don't shadow globalsBenjamin Peterson2010-11-201-8/+8
* | add filename to ENOENT message #4925Benjamin Peterson2010-11-201-0/+2
* | Adjust #8956 to add the bad signal number to the exception message.Brian Curtin2010-09-071-1/+1
* | Fix #8956. ValueError message was only mentioning one signal.Brian Curtin2010-09-061-1/+1
* | #2304: fix incorporating Eric Smith's .format suggestion and tested on Ubuntu...Tim Golden2010-08-111-1/+1
* | revert r83830, breaks tests on unixesBenjamin 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
* | Merged revisions 82075 via svnmerge fromJean-Paul Calderone2010-06-181-3/+3
* | Issue #8780: Fix a regression introduced by r78946 in subprocess on WindowsVictor Stinner2010-05-211-1/+1
* | Issue #8513: os.get_exec_path() supports b'PATH' key and bytes value.Victor Stinner2010-05-181-6/+5
* | Merged revisions 81179 via svnmerge fromVictor Stinner2010-05-141-3/+3
* | Merged revisions 81154 via svnmerge fromBrett Cannon2010-05-141-17/+34
* | Issue #8514: Add os.fsencode() function (Unix only): encode a string to bytesVictor Stinner2010-05-081-11/+3