summaryrefslogtreecommitdiffstats
path: root/Lib/subprocess.py
Commit message (Expand)AuthorAgeFilesLines
...
* | | Issue #8513: On UNIX, subprocess supports bytes command string.Victor Stinner2011-03-031-1/+1
|/ /
* | 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
* | Merged revisions 80439 via svnmerge fromBrian Curtin2010-04-241-47/+39
* | Issue #8391: os.execvpe() and os.getenv() supports unicode with surrogates andVictor Stinner2010-04-231-1/+4
* | Issue #8467: Pure Python implementation of subprocess encodes the error messageVictor Stinner2010-04-231-3/+4
* | Port #1220212 (os.kill for Win32) to py3k.Brian Curtin2010-04-121-0/+4
* | Fix an oversight in r78946 which causes failure in the subprocess module on W...Florent Xicluna2010-03-141-6/+6
* | Merged revisions 78018,78035-78040,78042-78043,78046,78048-78052,78054,78059,...Georg Brandl2010-03-141-1/+1
* | * Replaces the internals of the subprocess module from fork through exec onGregory P. Smith2010-03-141-101/+204
* | Merged revisions 78736,78759,78761,78767,78788-78789 via svnmerge fromFlorent Xicluna2010-03-081-2/+2
* | Merged revisions 78523 via svnmerge fromGregory P. Smith2010-03-011-3/+13
* | Recorded merge of revisions 77086 via svnmerge fromGeorg Brandl2009-12-281-2/+2
* | Recorded merge of revisions 76925 via svnmerge fromGeorg Brandl2009-12-201-15/+14
* | Merged revisions 76168 via svnmerge fromEric Smith2009-11-091-1/+3
* | Merged revisions 73930-73932,73937-73939,73945,73951,73954,73962-73963,73970 ...Alexandre Vassalotti2009-07-171-2/+2
* | Merged revisions 73916 via svnmerge fromAmaury Forgeot d'Arc2009-07-091-5/+6
* | Merged revisions 73825-73826 via svnmerge fromGregory P. Smith2009-07-041-29/+100
|/
* Issue #6274. Fixed a potential FD leak in subprocess.py.Facundo Batista2009-06-191-83/+94
* Merged revisions 70137 via svnmerge fromHirokazu Yamamoto2009-03-031-32/+15
* Merged revisions 69846 via svnmerge fromMark Dickinson2009-02-211-3/+3
* Merged revisions 69576,69579-69580,69589,69619-69620,69633,69703-69704,69728-...Benjamin Peterson2009-02-191-0/+3
* no 2.3 compat in the py3k lib #3676Benjamin Peterson2009-02-161-2/+0
* Merged revisions 67511,67536-67537,67543 via svnmerge fromGeorg Brandl2008-12-071-12/+59
* fix set_daemon usage in subprocessBenjamin Peterson2008-08-181-2/+2