summaryrefslogtreecommitdiffstats
path: root/Lib/subprocess.py
Commit message (Expand)AuthorAgeFilesLines
* 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
* Merged revisions 65459,65472,65481,65518,65536,65581,65609,65637,65641,65644-...Georg Brandl2008-08-121-4/+8
* Merged revisions 64623,64640,64665,64687,64689-64690,64719,64721,64735,64742,...Georg Brandl2008-07-161-1/+6
* #2683: Popen.communicate() argument must be bytes.Georg Brandl2008-07-011-6/+0
* fix more threading API usageBenjamin Peterson2008-06-131-2/+2
* Merged revisions 63724,63726,63732,63744,63754-63755,63757-63758,63760,63775,...Georg Brandl2008-06-101-0/+2
* The commands module has been removed. The getoutput() and getstatusoutput()Brett Cannon2008-05-261-3/+73
* Merged revisions 62386-62387,62389-62393,62396,62400-62402,62407,62409-62410,...Christian Heimes2008-04-201-0/+32
* Merged revisions 60094-60123 via svnmerge fromChristian Heimes2008-01-201-13/+20
* Removed PyInt_GetMax and sys.maxintChristian Heimes2007-12-041-2/+2
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-061-25/+17
* Patch # 1331 by Christian Heimes.Guido van Rossum2007-10-261-0/+2
* Patch# 1258 by Christian Heimes: kill basestring.Guido van Rossum2007-10-161-2/+2
* Breaking ground for PEP 3137 implementation:Guido van Rossum2007-10-081-3/+7
* More str/bytes goodness.Guido van Rossum2007-08-271-2/+2
* The bufsize argument to Popen() should accept None meaning the default (0).Guido van Rossum2007-06-071-0/+2