1. 33fc744 Issue #18851: Avoid a double close of subprocess pipes when the child process fails starting. by Antoine Pitrou · 12 years ago
  2. 045e457 Issue #18174: Fix fd leaks in tests. by Richard Oudkerk · 12 years ago
  3. 9b9cd4c #11963: fix Windows buildbots. by Ezio Melotti · 12 years ago
  4. efaad09 #11963: remove human verification from test_subprocess. by Ezio Melotti · 12 years ago
  5. ef2bd67 Issue #16762: Fix some test_subprocess failures on NetBSD and OpenBSD: kill() by Charles-François Natali · 13 years ago
  6. 027d6fc remove an obsolete comment by Gregory P. Smith · 13 years ago
  7. f047ba8 Refactor test_preexec_errpipe to not create an uncollectable reference cycle. by Gregory P. Smith · 13 years ago
  8. c319725 whitespace fix by Gregory P. Smith · 13 years ago
  9. 211248b Fix issue #16140 bug that the fix to issue #16327 added - don't double by Gregory P. Smith · 13 years ago
  10. 9d3b6e9 Fixes issue #16327: The subprocess module no longer leaks file descriptors by Gregory P. Smith · 13 years ago
  11. 313dc9b Clean up a test turd. by Mark Dickinson · 13 years ago
  12. f60845b Issue #14252: Fix subprocess.Popen.terminate() to not raise an error under Windows when the child process has already exited. by Antoine Pitrou · 13 years ago
  13. 8b59c23 you can't get resource.error if you can't import resource by Benjamin Peterson · 14 years ago
  14. 2a34eb3 Issue #12786: Set communication pipes used by subprocess.Popen CLOEXEC to avoid by Charles-François Natali · 14 years ago
  15. 8605936 Fix resource leaks in test_subprocess. by Nadeem Vawda · 14 years ago
  16. a8085d3 Issue #12650: fix failures on some buildbots, when a subprocess takes a long by Charles-François Natali · 14 years ago
  17. 100df0f Issue #12650: only run the tests on Unix. by Charles-François Natali · 14 years ago
  18. b02302c Issue #12650: Fix a race condition where a subprocess.Popen could leak by Charles-François Natali · 14 years ago
  19. d8e3901 Issue #12607: In subprocess, fix issue where if stdin, stdout or stderr is by Ross Lagerwall · 14 years ago
  20. b78fed9 Issue #12493: skip test_communicate_eintr() if signal.SIGALRM is missing by Victor Stinner · 14 years ago
  21. e790131 Issue #12493: subprocess: communicate() handles EINTR by Victor Stinner · 14 years ago
  22. e9b185f Issue #12085: Fix test_subprocess for my previous commit by Victor Stinner · 14 years ago
  23. 776e69b Close #12085: Fix an attribute error in subprocess.Popen destructor if the by Victor Stinner · 14 years ago
  24. 104c3f1 Issue #10963: Ensure that subprocess.communicate() never raises EPIPE. by Ross Lagerwall · 14 years ago
  25. cdd5fc9 #11490: EACCES can also mean command not found by R David Murray · 14 years ago
  26. 91ce0d9 Merged revisions 87695 via svnmerge from by Antoine Pitrou · 15 years ago
  27. 312efbc Merged revisions 87233 via svnmerge from by Gregory P. Smith · 15 years ago
  28. 7fe045e Merged revisions 86207 via svnmerge from by Brian Curtin · 15 years ago
  29. d117b56 Merged revisions 86185 via svnmerge from by Brian Curtin · 15 years ago
  30. dee0097 Merged revisions 84997 via svnmerge from by Antoine Pitrou · 15 years ago
  31. a6166da Merged revisions 84909-84913 via svnmerge from by Antoine Pitrou · 15 years ago
  32. b0b3bff Merged revisions 84883 via svnmerge from by Antoine Pitrou · 15 years ago
  33. 767cbc4 Merged revisions 84878 via svnmerge from by Antoine Pitrou · 15 years ago
  34. e8c4920 Merged revisions 83983 via svnmerge from by Brian Curtin · 15 years ago
  35. 8e4756c #2304: fix incorporating Eric Smith's .format suggestion and tested on Ubuntu as well as Windows by Tim Golden · 15 years ago
  36. 718f222 revert 83832; unix test breakage by Benjamin Peterson · 15 years ago
  37. 6fe8c41 Issue #2304: Add additional quotes when using cmd shell on Windows. Original patch from Gabriel Genellina by Tim Golden · 15 years ago
  38. 90374f5 Issue #3210: Ensure stdio handles are closed if CreateProcess fails by Tim Golden · 15 years ago
  39. 21b44e0 Merged revisions 83067 via svnmerge from by Ronald Oussoren · 15 years ago
  40. e9a6a7d Issue #9265: Incorrect name passed as arg[0] when shell=True by Stefan Krah · 15 years ago
  41. b33f0c1 Revert r60115 by Jean-Paul Calderone · 15 years ago
  42. 3c919cf The SIGINT signal may happen earlier, during site.py initialization. by Florent Xicluna · 15 years ago
  43. 446ff14 The standard error should be empty when the signal is killed, except on SIGINT. by Florent Xicluna · 15 years ago
  44. fc4d6d7 Silence test_subprocess. by Florent Xicluna · 15 years ago
  45. 6376370 Revert r78830: realpath() should really be applied to sys.executable. by Florent Xicluna · 15 years ago
  46. e58d91c Fix the test_subprocess failure when sys.executable is meaningless: '' or a directory. by Florent Xicluna · 15 years ago
  47. faf1753 Replace the stderr logging with assertNotEqual(returncode, 0). by Florent Xicluna · 15 years ago
  48. 400efc2 #2777: Try hard to make Win7 buildbot happy... by Florent Xicluna · 15 years ago
  49. c083864 Do not fail if returncode is 0 on send_signal/kill/terminate, for win32 platforms. by Florent Xicluna · 15 years ago
  50. c02bbe3 #2777: Enable test_send_signal, test_terminate and test_kill on win32 platforms. by Florent Xicluna · 15 years ago
  51. 632df99 Skip test_send_signal, test_kill, test_terminate on win32 platforms, for 2.7a4 release. by Florent Xicluna · 15 years ago
  52. aa90db9 #2777: Apply same recipe on win32, i.e. do not inherit file handles. by Florent Xicluna · 15 years ago
  53. af9a06a #2777: Apply same recipe for test_terminate and test_kill, i.e. close or redirect fds. by Florent Xicluna · 15 years ago
  54. cecef39 #2777: Handle fds more carefully to try to fix some x86-Linux failures (namely, neal bot and twisted bot). by Florent Xicluna · 15 years ago
  55. 7272acf These line should not be there. by Florent Xicluna · 15 years ago
  56. d693563 Let's use assertIsNone / assertIsNotNone. It's hype. by Florent Xicluna · 15 years ago
  57. 80e0e2d Workaround #3137: Retry SIGINT if it is not received the first time. by Florent Xicluna · 15 years ago
  58. ab5e17f #2777: Enable test_send_signal, test_kill and test_terminate on all platforms. by Florent Xicluna · 15 years ago
  59. bab22a7 Cleanup. by Florent Xicluna · 15 years ago
  60. c1baf4a Fix the new test on windows (skip it, its posix only) by Gregory P. Smith · 15 years ago
  61. cce211f Issue #1068268: The subprocess module now handles EINTR in internal by Gregory P. Smith · 15 years ago
  62. 78fd521 Fix an oversight in r78508: p.wait() should be compared to 0 by Florent Xicluna · 15 years ago
  63. 98e3fc3 Clean test_subprocess: use assertRaises, skipIf, skipUnless helpers and a custom helper assertStderrEqual. by Florent Xicluna · 15 years ago
  64. 8f6a287 #7712: add a temp_cwd context manager to test_support and use it in regrtest to run all the tests in a temporary directory, saving the original CWD in test_support.SAVEDCWD. Thanks to Florent Xicluna who helped with the patch. by Ezio Melotti · 15 years ago
  65. aa98058 use assert[Not]In where appropriate by Ezio Melotti · 16 years ago
  66. ce32eb7 #6416: Fix compilation of the select module on Windows, as well as test_subprocess: by Amaury Forgeot d'Arc · 16 years ago
  67. dd7ca24 Use select.poll() in subprocess, when available, rather than select() so that by Gregory P. Smith · 16 years ago
  68. 5c8da86 convert usage of fail* to assert* by Benjamin Peterson · 16 years ago
  69. f3715d2 #5179: don't leak PIPE fds when child execution fails. by Georg Brandl · 16 years ago
  70. 2657680 rename the new check_call_output to check_output. its less ugly. by Gregory P. Smith · 17 years ago
  71. 97f49f4 Adds a subprocess.check_call_output() function to return the output from a by Gregory P. Smith · 17 years ago
  72. 4036fd4 Fixes issue2791: subprocess.Popen.communicate leaked a file descripton until by Gregory P. Smith · 17 years ago
  73. af8a687 fix issue2381: test_subprocess fails if your sys.executable is on a by Gregory P. Smith · 17 years ago
  74. c2ca6db Disabled some unit tests for the upcoming release. See #2777 by Christian Heimes · 17 years ago
  75. e74c8f2 Added kill, terminate and send_signal to subprocess.Popen by Christian Heimes · 17 years ago
  76. 70eb2f9 Fix issue 1300: Quote command line arguments that contain a '|' character in by Gregory P. Smith · 18 years ago
  77. e047e6d fix comment typos, use not arg instead of arg == "", add test coverage by Gregory P. Smith · 18 years ago
  78. e9a0e88 Patch #1672 by Joseph Armbruster. Use tempdir() to get a temporary directory. by Guido van Rossum · 18 years ago
  79. 81a191b Applied patch 1669481, slightly modified: Support close_fds on Win32 by Peter Astrand · 18 years ago
  80. 10514a7 Fix for bug #1634343: allow specifying empty arguments on Windows by Peter Astrand · 19 years ago
  81. c36bede Fixed subprocess bug #1531862 again, after removing tests offending buildbot by Gustavo Niemeyer · 19 years ago
  82. 314bef9 Revert 51758 because it broke all the buildbots by Neal Norwitz · 19 years ago
  83. 8cb64ea Fixing #1531862: Do not close standard file descriptors in the by Gustavo Niemeyer · 19 years ago
  84. 4edcba6 Whitespace normalization. by Tim Peters · 19 years ago
  85. 86e1e38 [Patch #1520905] Attempt to suppress core file created by test_subprocess.py. by Andrew M. Kuchling · 19 years ago
  86. 7d1d436 Bug #1223937: CalledProcessError.errno -> CalledProcessError.returncode. by Peter Astrand · 19 years ago
  87. 2b221ed Make it possible to run test_subprocess.py with Python 2.2, which lacks test_support.reap_children(). by Peter Astrand · 19 years ago
  88. 38ff36c Whitespace normalization. by Tim Peters · 19 years ago
  89. b15ac31 Add new utility function, reap_children(), to test_support. This should by Neal Norwitz · 19 years ago
  90. d6b2430 Make it possible to run test_subprocess.py on Python 2.2, which lacks test_support.is_resource_enabled. by Peter Astrand · 19 years ago
  91. a6d01ce Try to fix breakage caused by patch #1479181, r45850 by Neal Norwitz · 19 years ago
  92. c4edb0e SF #1479181: split open() and file() from being aliases for each other. by Neal Norwitz · 19 years ago
  93. eba28be Whitespace normalization. by Tim Peters · 20 years ago
  94. 653a5ad Tweak test_communicate_stderr so that it works when run under a pydebug build. by Brett Cannon · 20 years ago
  95. f7f1bb7 Only run extensive subprocess tests if -usubprocess to regrtest is specified. Fixes #1124637 by Peter Astrand · 20 years ago
  96. cbac93c Added three more testcases: Using communicate with only one of by Peter Astrand · 20 years ago
  97. 454f767 New subprocess utility function: check_call. Closes #1071764. by Peter Astrand · 21 years ago
  98. 738131d Raise TypeError if bufsize argument is not an integer. Patch 1071755, slightly modified. by Peter Astrand · 21 years ago
  99. 2224be6 Remove tempfile after use in test_call_string. by Peter Astrand · 21 years ago
  100. 195404f Use os.chdir/os.getcwd instead of os.path.realpath, to support Tru64 by Peter Astrand · 21 years ago