| Commit message (Expand) | Author | Age | Files | Lines |
* | you can't get resource.error if you can't import resource | Benjamin Peterson | 2011-12-10 | 1 | -11/+16 |
|
|
* | Issue #12786: Set communication pipes used by subprocess.Popen CLOEXEC to avoid | Charles-François Natali | 2011-08-25 | 1 | -0/+31 |
|
|
* | Fix resource leaks in test_subprocess. | Nadeem Vawda | 2011-08-19 | 1 | -0/+4 |
|
|
* | Issue #12650: fix failures on some buildbots, when a subprocess takes a long | Charles-François Natali | 2011-08-18 | 1 | -12/+0 |
|
|
* | Issue #12650: only run the tests on Unix. | Charles-François Natali | 2011-08-18 | 1 | -58/+58 |
|
|
* | Issue #12650: Fix a race condition where a subprocess.Popen could leak | Charles-François Natali | 2011-08-18 | 1 | -0/+57 |
|
|
* | Issue #12607: In subprocess, fix issue where if stdin, stdout or stderr is | Ross Lagerwall | 2011-07-27 | 1 | -0/+58 |
|
|
* | Issue #12493: skip test_communicate_eintr() if signal.SIGALRM is missing | Victor Stinner | 2011-07-05 | 1 | -0/+2 |
|
|
* | Issue #12493: subprocess: communicate() handles EINTR | Victor Stinner | 2011-07-05 | 1 | -0/+16 |
|
|
* | Issue #12085: Fix test_subprocess for my previous commit | Victor Stinner | 2011-05-31 | 1 | -1/+1 |
|
|
* | Close #12085: Fix an attribute error in subprocess.Popen destructor if the | Victor Stinner | 2011-05-31 | 1 | -0/+10 |
|
|
* | Issue #10963: Ensure that subprocess.communicate() never raises EPIPE. | Ross Lagerwall | 2011-04-05 | 1 | -0/+18 |
|
|
* | #11490: EACCES can also mean command not found | R David Murray | 2011-03-14 | 1 | -1/+2 |
|
|
* | Merged revisions 87695 via svnmerge from | Antoine Pitrou | 2011-01-03 | 1 | -0/+52 |
|
|
* | Merged revisions 87233 via svnmerge from | Gregory P. Smith | 2010-12-14 | 1 | -0/+10 |
|
|
* | Merged revisions 86207 via svnmerge from | Brian Curtin | 2010-11-05 | 1 | -0/+17 |
|
|
* | Merged revisions 86185 via svnmerge from | Brian Curtin | 2010-11-05 | 1 | -0/+16 |
|
|
* | Merged revisions 84997 via svnmerge from | Antoine Pitrou | 2010-09-24 | 1 | -20/+14 |
|
|
* | Merged revisions 84909-84913 via svnmerge from | Antoine Pitrou | 2010-09-20 | 1 | -18/+14 |
|
|
* | Merged revisions 84883 via svnmerge from | Antoine Pitrou | 2010-09-18 | 1 | -12/+32 |
|
|
* | Merged revisions 84878 via svnmerge from | Antoine Pitrou | 2010-09-18 | 1 | -1/+1 |
|
|
* | Merged revisions 83983 via svnmerge from | Brian Curtin | 2010-08-13 | 1 | -2/+3 |
|
|
* | #2304: fix incorporating Eric Smith's .format suggestion and tested on Ubuntu... | Tim Golden | 2010-08-12 | 1 | -1/+43 |
|
|
* | revert 83832; unix test breakage | Benjamin Peterson | 2010-08-08 | 1 | -43/+1 |
|
|
* | Issue #2304: Add additional quotes when using cmd shell on Windows. Original ... | Tim Golden | 2010-08-08 | 1 | -1/+43 |
|
|
* | Issue #3210: Ensure stdio handles are closed if CreateProcess fails | Tim Golden | 2010-08-06 | 1 | -0/+20 |
|
|
* | Merged revisions 83067 via svnmerge from | Ronald Oussoren | 2010-07-23 | 1 | -0/+14 |
|
|
* | Issue #9265: Incorrect name passed as arg[0] when shell=True | Stefan Krah | 2010-07-19 | 1 | -0/+19 |
|
|
* | Revert r60115 | Jean-Paul Calderone | 2010-06-18 | 1 | -2/+0 |
|
|
* | The SIGINT signal may happen earlier, during site.py initialization. | Florent Xicluna | 2010-03-23 | 1 | -4/+1 |
|
|
* | The standard error should be empty when the signal is killed, except on SIGINT. | Florent Xicluna | 2010-03-23 | 1 | -2/+8 |
|
|
* | Silence test_subprocess. | Florent Xicluna | 2010-03-23 | 1 | -24/+12 |
|
|
* | Revert r78830: realpath() should really be applied to sys.executable. | Florent Xicluna | 2010-03-11 | 1 | -1/+1 |
|
|
* | Fix the test_subprocess failure when sys.executable is meaningless: '' or a d... | Florent Xicluna | 2010-03-11 | 1 | -1/+1 |
|
|
* | Replace the stderr logging with assertNotEqual(returncode, 0). | Florent Xicluna | 2010-03-08 | 1 | -4/+2 |
|
|
* | #2777: Try hard to make Win7 buildbot happy... | Florent Xicluna | 2010-03-07 | 1 | -2/+3 |
|
|
* | Do not fail if returncode is 0 on send_signal/kill/terminate, for win32 platf... | Florent Xicluna | 2010-03-07 | 1 | -39/+44 |
|
|
* | #2777: Enable test_send_signal, test_terminate and test_kill on win32 platforms. | Florent Xicluna | 2010-03-07 | 1 | -3/+0 |
|
|
* | Skip test_send_signal, test_kill, test_terminate on win32 platforms, for 2.7a... | Florent Xicluna | 2010-03-06 | 1 | -5/+11 |
|
|
* | #2777: Apply same recipe on win32, i.e. do not inherit file handles. | Florent Xicluna | 2010-03-06 | 1 | -3/+5 |
|
|
* | #2777: Apply same recipe for test_terminate and test_kill, i.e. close or redi... | Florent Xicluna | 2010-03-06 | 1 | -2/+4 |
|
|
* | #2777: Handle fds more carefully to try to fix some x86-Linux failures (namel... | Florent Xicluna | 2010-03-05 | 1 | -3/+6 |
|
|
* | These line should not be there. | Florent Xicluna | 2010-03-05 | 1 | -1/+0 |
|
|
* | Let's use assertIsNone / assertIsNotNone. It's hype. | Florent Xicluna | 2010-03-05 | 1 | -5/+5 |
|
|
* | Workaround #3137: Retry SIGINT if it is not received the first time. | Florent Xicluna | 2010-03-05 | 1 | -2/+13 |
|
|
* | #2777: Enable test_send_signal, test_kill and test_terminate on all platforms. | Florent Xicluna | 2010-03-04 | 1 | -6/+20 |
|
|
* | Cleanup. | Florent Xicluna | 2010-03-04 | 1 | -5/+5 |
|
|
* | Fix the new test on windows (skip it, its posix only) | Gregory P. Smith | 2010-03-01 | 1 | -0/+1 |
|
|
* | Issue #1068268: The subprocess module now handles EINTR in internal | Gregory P. Smith | 2010-03-01 | 1 | -1/+21 |
|
|
* | Fix an oversight in r78508: p.wait() should be compared to 0 | Florent Xicluna | 2010-02-27 | 1 | -4/+4 |
|
|