1. 21b44e0 Merged revisions 83067 via svnmerge from by Ronald Oussoren · 15 years ago
  2. e9a6a7d Issue #9265: Incorrect name passed as arg[0] when shell=True by Stefan Krah · 15 years ago
  3. b33f0c1 Revert r60115 by Jean-Paul Calderone · 15 years ago
  4. 3c919cf The SIGINT signal may happen earlier, during site.py initialization. by Florent Xicluna · 15 years ago
  5. 446ff14 The standard error should be empty when the signal is killed, except on SIGINT. by Florent Xicluna · 15 years ago
  6. fc4d6d7 Silence test_subprocess. by Florent Xicluna · 15 years ago
  7. 6376370 Revert r78830: realpath() should really be applied to sys.executable. by Florent Xicluna · 15 years ago
  8. e58d91c Fix the test_subprocess failure when sys.executable is meaningless: '' or a directory. by Florent Xicluna · 15 years ago
  9. faf1753 Replace the stderr logging with assertNotEqual(returncode, 0). by Florent Xicluna · 15 years ago
  10. 400efc2 #2777: Try hard to make Win7 buildbot happy... by Florent Xicluna · 15 years ago
  11. c083864 Do not fail if returncode is 0 on send_signal/kill/terminate, for win32 platforms. by Florent Xicluna · 15 years ago
  12. c02bbe3 #2777: Enable test_send_signal, test_terminate and test_kill on win32 platforms. by Florent Xicluna · 15 years ago
  13. 632df99 Skip test_send_signal, test_kill, test_terminate on win32 platforms, for 2.7a4 release. by Florent Xicluna · 15 years ago
  14. aa90db9 #2777: Apply same recipe on win32, i.e. do not inherit file handles. by Florent Xicluna · 15 years ago
  15. af9a06a #2777: Apply same recipe for test_terminate and test_kill, i.e. close or redirect fds. by Florent Xicluna · 15 years ago
  16. 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
  17. 7272acf These line should not be there. by Florent Xicluna · 15 years ago
  18. d693563 Let's use assertIsNone / assertIsNotNone. It's hype. by Florent Xicluna · 15 years ago
  19. 80e0e2d Workaround #3137: Retry SIGINT if it is not received the first time. by Florent Xicluna · 15 years ago
  20. ab5e17f #2777: Enable test_send_signal, test_kill and test_terminate on all platforms. by Florent Xicluna · 15 years ago
  21. bab22a7 Cleanup. by Florent Xicluna · 15 years ago
  22. c1baf4a Fix the new test on windows (skip it, its posix only) by Gregory P. Smith · 15 years ago
  23. cce211f Issue #1068268: The subprocess module now handles EINTR in internal by Gregory P. Smith · 15 years ago
  24. 78fd521 Fix an oversight in r78508: p.wait() should be compared to 0 by Florent Xicluna · 15 years ago
  25. 98e3fc3 Clean test_subprocess: use assertRaises, skipIf, skipUnless helpers and a custom helper assertStderrEqual. by Florent Xicluna · 15 years ago
  26. 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
  27. aa98058 use assert[Not]In where appropriate by Ezio Melotti · 16 years ago
  28. ce32eb7 #6416: Fix compilation of the select module on Windows, as well as test_subprocess: by Amaury Forgeot d'Arc · 16 years ago
  29. dd7ca24 Use select.poll() in subprocess, when available, rather than select() so that by Gregory P. Smith · 16 years ago
  30. 5c8da86 convert usage of fail* to assert* by Benjamin Peterson · 16 years ago
  31. f3715d2 #5179: don't leak PIPE fds when child execution fails. by Georg Brandl · 16 years ago
  32. 2657680 rename the new check_call_output to check_output. its less ugly. by Gregory P. Smith · 17 years ago
  33. 97f49f4 Adds a subprocess.check_call_output() function to return the output from a by Gregory P. Smith · 17 years ago
  34. 4036fd4 Fixes issue2791: subprocess.Popen.communicate leaked a file descripton until by Gregory P. Smith · 17 years ago
  35. af8a687 fix issue2381: test_subprocess fails if your sys.executable is on a by Gregory P. Smith · 17 years ago
  36. c2ca6db Disabled some unit tests for the upcoming release. See #2777 by Christian Heimes · 17 years ago
  37. e74c8f2 Added kill, terminate and send_signal to subprocess.Popen by Christian Heimes · 17 years ago
  38. 70eb2f9 Fix issue 1300: Quote command line arguments that contain a '|' character in by Gregory P. Smith · 18 years ago
  39. e047e6d fix comment typos, use not arg instead of arg == "", add test coverage by Gregory P. Smith · 18 years ago
  40. e9a0e88 Patch #1672 by Joseph Armbruster. Use tempdir() to get a temporary directory. by Guido van Rossum · 18 years ago
  41. 81a191b Applied patch 1669481, slightly modified: Support close_fds on Win32 by Peter Astrand · 18 years ago
  42. 10514a7 Fix for bug #1634343: allow specifying empty arguments on Windows by Peter Astrand · 19 years ago
  43. c36bede Fixed subprocess bug #1531862 again, after removing tests offending buildbot by Gustavo Niemeyer · 19 years ago
  44. 314bef9 Revert 51758 because it broke all the buildbots by Neal Norwitz · 19 years ago
  45. 8cb64ea Fixing #1531862: Do not close standard file descriptors in the by Gustavo Niemeyer · 19 years ago
  46. 4edcba6 Whitespace normalization. by Tim Peters · 19 years ago
  47. 86e1e38 [Patch #1520905] Attempt to suppress core file created by test_subprocess.py. by Andrew M. Kuchling · 19 years ago
  48. 7d1d436 Bug #1223937: CalledProcessError.errno -> CalledProcessError.returncode. by Peter Astrand · 19 years ago
  49. 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
  50. 38ff36c Whitespace normalization. by Tim Peters · 19 years ago
  51. b15ac31 Add new utility function, reap_children(), to test_support. This should by Neal Norwitz · 19 years ago
  52. 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
  53. a6d01ce Try to fix breakage caused by patch #1479181, r45850 by Neal Norwitz · 19 years ago
  54. c4edb0e SF #1479181: split open() and file() from being aliases for each other. by Neal Norwitz · 19 years ago
  55. eba28be Whitespace normalization. by Tim Peters · 20 years ago
  56. 653a5ad Tweak test_communicate_stderr so that it works when run under a pydebug build. by Brett Cannon · 20 years ago
  57. f7f1bb7 Only run extensive subprocess tests if -usubprocess to regrtest is specified. Fixes #1124637 by Peter Astrand · 20 years ago
  58. cbac93c Added three more testcases: Using communicate with only one of by Peter Astrand · 20 years ago
  59. 454f767 New subprocess utility function: check_call. Closes #1071764. by Peter Astrand · 21 years ago
  60. 738131d Raise TypeError if bufsize argument is not an integer. Patch 1071755, slightly modified. by Peter Astrand · 21 years ago
  61. 2224be6 Remove tempfile after use in test_call_string. by Peter Astrand · 21 years ago
  62. 195404f Use os.chdir/os.getcwd instead of os.path.realpath, to support Tru64 by Peter Astrand · 21 years ago
  63. c19ccc9 Removed test_close_fds, because it's too unreliable. We simply cannot by Peter Astrand · 21 years ago
  64. 1dbf243 remove_stderr_debug_decorations(): Always try the substitution. Else by Tim Peters · 21 years ago
  65. 9e29fc5 Don't spend quite as much time looking for leaks on Windows, where by Fredrik Lundh · 21 years ago
  66. 59c0559 normalize case when comparing directory names (problem reported by by Fredrik Lundh · 21 years ago
  67. 3761e8d New helper remove_stderr_debug_decorations(). This test passes in a by Tim Peters · 21 years ago
  68. 29b6b4f Kill several problems at once: test_poll() failed sometimes for me. by Tim Peters · 21 years ago
  69. 4052fe5 test_stdout_none(): Don't print "banana" to the screen in the middle by Tim Peters · 21 years ago
  70. 876c432 Windows test_creationflags() test: print msg to stderr informing the by Tim Peters · 21 years ago
  71. f73cc97 XXX about extreme expense of test_no_leaking() on Windows. I'm not sure by Tim Peters · 21 years ago
  72. 7b759da Experience with Zope2's tests showed it's a Bad Idea to make unittest by Tim Peters · 21 years ago
  73. 3b01a70 Wrap long lines. by Tim Peters · 21 years ago
  74. e718f61 Whitespace normalization. by Tim Peters · 21 years ago
  75. 5b3687d Added Peter Astrand's subprocess module. by Fredrik Lundh · 21 years ago