summaryrefslogtreecommitdiff
path: root/Lib/test/test_subprocess.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #10963: Ensure that subprocess.communicate() never raises EPIPE.Ross Lagerwall2011-04-051-0/+18
* #11490: EACCES can also mean command not foundR David Murray2011-03-131-1/+2
* Merged revisions 87695 via svnmerge fromAntoine Pitrou2011-01-031-0/+52
* Merged revisions 87233 via svnmerge fromGregory P. Smith2010-12-141-0/+10
* Merged revisions 86207 via svnmerge fromBrian Curtin2010-11-051-0/+17
* Merged revisions 86185 via svnmerge fromBrian Curtin2010-11-051-0/+16
* Merged revisions 84997 via svnmerge fromAntoine Pitrou2010-09-241-20/+14
* Merged revisions 84909-84913 via svnmerge fromAntoine Pitrou2010-09-201-18/+14
* Merged revisions 84883 via svnmerge fromAntoine Pitrou2010-09-181-12/+32
* Merged revisions 84878 via svnmerge fromAntoine Pitrou2010-09-181-1/+1
* Merged revisions 83983 via svnmerge fromBrian Curtin2010-08-131-2/+3
* #2304: fix incorporating Eric Smith's .format suggestion and tested on Ubuntu...Tim Golden2010-08-121-1/+43
* revert 83832; unix test breakageBenjamin Peterson2010-08-081-43/+1
* Issue #2304: Add additional quotes when using cmd shell on Windows. Original ...Tim Golden2010-08-081-1/+43
* Issue #3210: Ensure stdio handles are closed if CreateProcess failsTim Golden2010-08-061-0/+20
* Merged revisions 83067 via svnmerge fromRonald Oussoren2010-07-231-0/+14
* Issue #9265: Incorrect name passed as arg[0] when shell=TrueStefan Krah2010-07-191-0/+19
* Revert r60115Jean-Paul Calderone2010-06-181-2/+0
* The SIGINT signal may happen earlier, during site.py initialization.Florent Xicluna2010-03-231-4/+1
* The standard error should be empty when the signal is killed, except on SIGINT.Florent Xicluna2010-03-231-2/+8
* Silence test_subprocess.Florent Xicluna2010-03-231-24/+12
* Revert r78830: realpath() should really be applied to sys.executable.Florent Xicluna2010-03-111-1/+1
* Fix the test_subprocess failure when sys.executable is meaningless: '' or a d...Florent Xicluna2010-03-111-1/+1
* Replace the stderr logging with assertNotEqual(returncode, 0).Florent Xicluna2010-03-081-4/+2
* #2777: Try hard to make Win7 buildbot happy...Florent Xicluna2010-03-071-2/+3
* Do not fail if returncode is 0 on send_signal/kill/terminate, for win32 platf...Florent Xicluna2010-03-071-39/+44
* #2777: Enable test_send_signal, test_terminate and test_kill on win32 platforms.Florent Xicluna2010-03-071-3/+0
* Skip test_send_signal, test_kill, test_terminate on win32 platforms, for 2.7a...Florent Xicluna2010-03-061-5/+11
* #2777: Apply same recipe on win32, i.e. do not inherit file handles.Florent Xicluna2010-03-061-3/+5
* #2777: Apply same recipe for test_terminate and test_kill, i.e. close or redi...Florent Xicluna2010-03-061-2/+4
* #2777: Handle fds more carefully to try to fix some x86-Linux failures (namel...Florent Xicluna2010-03-051-3/+6
* These line should not be there.Florent Xicluna2010-03-051-1/+0
* Let's use assertIsNone / assertIsNotNone. It's hype.Florent Xicluna2010-03-051-5/+5
* Workaround #3137: Retry SIGINT if it is not received the first time.Florent Xicluna2010-03-051-2/+13
* #2777: Enable test_send_signal, test_kill and test_terminate on all platforms.Florent Xicluna2010-03-041-6/+20
* Cleanup.Florent Xicluna2010-03-041-5/+5
* Fix the new test on windows (skip it, its posix only)Gregory P. Smith2010-03-011-0/+1
* Issue #1068268: The subprocess module now handles EINTR in internalGregory P. Smith2010-03-011-1/+21
* Fix an oversight in r78508: p.wait() should be compared to 0Florent Xicluna2010-02-271-4/+4
* Clean test_subprocess: use assertRaises, skipIf, skipUnless helpers and a cus...Florent Xicluna2010-02-271-318/+299
* #7712: add a temp_cwd context manager to test_support and use it in regrtest ...Ezio Melotti2010-02-101-3/+16
* use assert[Not]In where appropriateEzio Melotti2010-01-231-3/+3
* #6416: Fix compilation of the select module on Windows, as well as test_subpr...Amaury Forgeot d'Arc2009-07-091-1/+1
* Use select.poll() in subprocess, when available, rather than select() so thatGregory P. Smith2009-07-041-1/+17
* convert usage of fail* to assert*Benjamin Peterson2009-06-301-7/+7
* #5179: don't leak PIPE fds when child execution fails.Georg Brandl2009-02-141-0/+16
* 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-0/+34
* Fixes issue2791: subprocess.Popen.communicate leaked a file descripton untilGregory P. Smith2008-05-261-5/+19
* fix issue2381: test_subprocess fails if your sys.executable is on aGregory P. Smith2008-05-171-2/+2