1. cfb5b87 Issue #21619: Cleaned up test_broken_pipe_cleanup. Patch by Martin Panter. by Serhiy Storchaka · 9 years ago
  2. f87afb0 Issue #21619: Cleaned up test_broken_pipe_cleanup. Patch by Martin Panter. by Serhiy Storchaka · 9 years ago
  3. 3737e60 Merge 3.4 (test_subprocess) by Victor Stinner · 9 years ago
  4. 20f4bd4 Issue #21619: Try to fix test_broken_pipe_cleanup() by Victor Stinner · 9 years ago
  5. 6ab0ec9 Fixed a test for issue #21619 on Windows. by Serhiy Storchaka · 9 years ago
  6. cf265fd Fixed a test for issue #21619 on Windows. by Serhiy Storchaka · 9 years ago
  7. 86ba765 Issue #21619: Popen objects no longer leave a zombie after exit in the with by Serhiy Storchaka · 9 years ago
  8. ab900c2 Issue #21619: Popen objects no longer leave a zombie after exit in the with by Serhiy Storchaka · 9 years ago
  9. 5fd174a Use os.devnull instead of hardcoded '/dev/null'. by Serhiy Storchaka · 9 years ago
  10. 85c3033 Use os.devnull instead of hardcoded '/dev/null'. by Serhiy Storchaka · 9 years ago
  11. 6e6c59b Issue #23285: PEP 475 -- Retry system calls failing with EINTR. by Charles-François Natali · 9 years ago
  12. 8f437aa Issue #22290: Fix error handling in the _posixsubprocess module. by Victor Stinner · 10 years ago
  13. afe8d06 Issue #21332: Ensure that ``bufsize=1`` in subprocess.Popen() selects line buffering, rather than block buffering. by Antoine Pitrou · 10 years ago
  14. 9204e09 fix a BytesWarning in my previous commit. by Gregory P. Smith · 10 years ago
  15. 634aa68 Isolate the subprocess test_close_fds_when_max_fd_is_lowered test so by Gregory P. Smith · 10 years ago
  16. d04f699 Skip test_subprocess test_close_fds_when_max_fd_is_lowered on FreeBSD by Gregory P. Smith · 10 years ago
  17. 8fed4de Attempt to fix the "too many open files" errors on several of the by Gregory P. Smith · 10 years ago
  18. ffd529c Explicitly wait for the child instead of letting a destructor do it. by Gregory P. Smith · 10 years ago
  19. d4dcb70 Don't restrict ourselves to a "max" fd when closing fds before exec() by Gregory P. Smith · 10 years ago
  20. c644e7c Issue #21396: Fix TextIOWrapper(..., write_through=True) to not force a flush() on the underlying binary stream. by Antoine Pitrou · 10 years ago
  21. ab2719f fix the test on windows which has different return codes from killed children. by Gregory P. Smith · 10 years ago
  22. d65ba51 subprocess's Popen.wait() is now thread safe so that multiple threads by Gregory P. Smith · 10 years ago
  23. 53dd816 Fixes issue #15798: subprocess.Popen() no longer fails if file by Gregory P. Smith · 11 years ago
  24. 54532c9 Undo supposed fix for Issue #15798 until I understand why this is by Gregory P. Smith · 11 years ago
  25. 361e30c Undo supposed fix for Issue #15798 until I understand why this is by Gregory P. Smith · 11 years ago
  26. 1c27e3c Fixes Issue #15798 - subprocess.Popen() no longer fails if file by Gregory P. Smith · 11 years ago
  27. 1eda9e7 Fixes Issue #15798 - subprocess.Popen() no longer fails if file by Gregory P. Smith · 11 years ago
  28. 5323fb0 Issue #19637: fix test_undecodable_env() of test_subprocess on AIX by Victor Stinner · 11 years ago
  29. 3a4586a Issue #18923: Update subprocess to use the new selectors module. by Charles-François Natali · 11 years ago
  30. ab7211f Issue #10197 Rework subprocess.get[status]output to use subprocess functionality and thus to work on Windows. Patch by Nick Coghlan. by Tim Golden · 11 years ago
  31. e004175 Issue #10197 Rework subprocess.get[status]output to use subprocess functionality and thus to work on Windows. Patch by Nick Coghlan. by Tim Golden · 11 years ago
  32. fd4722c Issue #9548: Add a minimal "_bootlocale" module that is imported by the _io module instead of the full locale module. by Antoine Pitrou · 11 years ago
  33. 77e904e Issue #18948: improve SuppressCoreFiles to include Windows crash popup suppression, and use it in more tests. by Antoine Pitrou · 11 years ago
  34. b0478b3 Issue #18623: Factor out the _SuppressCoreFiles context manager into test.support. by Antoine Pitrou · 11 years ago
  35. f6fa22e Issue #18571: Merge duplicate test code by Victor Stinner · 11 years ago
  36. 267964c Forward port new tests from Issue #18851. by Antoine Pitrou · 11 years ago
  37. a839271 Forward port new tests from Issue #18851. by Antoine Pitrou · 11 years ago
  38. 6cc5039 Fixes Issue #15507: test_subprocess's test_send_signal could fail if the test by Gregory P. Smith · 11 years ago
  39. dee0434 Fixes issue #15507: test_subprocess's test_send_signal could fail if the test by Gregory P. Smith · 11 years ago
  40. daf4555 Issue #18571: Implementation of the PEP 446: file descriptors and file handles by Victor Stinner · 11 years ago
  41. a439b32 Merge. by Charles-François Natali · 11 years ago
  42. 249cdc3 Issue #18763: subprocess: The file descriptors are now closed after calling the by Charles-François Natali · 11 years ago
  43. 582583b Issue #17046: merge from 3.3 by Ned Deily · 11 years ago
  44. e92dfbf Issue #17046: Fix test_subprocess test_executable_without_cwd broken test case. by Ned Deily · 11 years ago
  45. 284e5ce Fix the RLIMIT_CORE resource lowering logic in test_subprocess. by Antoine Pitrou · 11 years ago
  46. a35a128 Merge. by Richard Oudkerk · 11 years ago
  47. 0e547b6 Issue #18174: Fix fd leaks in tests. by Richard Oudkerk · 11 years ago
  48. dc49b2b Try to make test more reliable (saw some sporadic failures on buildbots) by Antoine Pitrou · 11 years ago
  49. 5b6616d Try to make test more reliable (saw some sporadic failures on buildbots) by Antoine Pitrou · 11 years ago
  50. fcd9f22 Issue #16624: `subprocess.check_output` now accepts an `input` argument, by Serhiy Storchaka · 11 years ago
  51. 4a8ea9e Fixes issue #17488: Change the subprocess.Popen bufsize parameter default value by Gregory P. Smith · 11 years ago
  52. a1b9ed3 Fixes issue #17488: Change the subprocess.Popen bufsize parameter default value by Gregory P. Smith · 11 years ago
  53. a1ed539 Fixes issue #17488: Change the subprocess.Popen bufsize parameter default value by Gregory P. Smith · 11 years ago
  54. c041735 #11963: merge with 3.3. by Ezio Melotti · 11 years ago
  55. 3300878 #11963: merge with 3.2. by Ezio Melotti · 11 years ago
  56. 42a541b #11963: remove human verification from test_parser and test_subprocess. by Ezio Melotti · 11 years ago
  57. b3f194d Issue #16903: Popen.communicate() on Unix now accepts strings when by Serhiy Storchaka · 11 years ago
  58. 6c566b3 Issue #16762: Fix some test_subprocess failures on NetBSD and OpenBSD: kill() by Charles-François Natali · 12 years ago
  59. dbc744a Issue #16762: Fix some test_subprocess failures on NetBSD and OpenBSD: kill() by Charles-François Natali · 12 years ago
  60. 53221e3 Issue #16762: Fix some test_subprocess failures on NetBSD and OpenBSD: kill() by Charles-François Natali · 12 years ago
  61. 0c8ee7f fix test for subprocess (#16644) by Andrew Svetlov · 12 years ago
  62. b172697 fix test for subprocess (#16644) by Andrew Svetlov · 12 years ago
  63. 57a1233 fix test for subprocess (#16644) by Andrew Svetlov · 12 years ago
  64. 3438fa4 Get rig of EnvironmentError (#16705) by Andrew Svetlov · 12 years ago
  65. 65ee6ec Refactor test_preexec_errpipe to not create an uncollectable reference cycle. by Gregory P. Smith · 12 years ago
  66. 859035d Refactor test_preexec_errpipe to not create an uncollectable reference cycle. by Gregory P. Smith · 12 years ago
  67. e27faac Refactor test_preexec_errpipe to not create an uncollectable reference cycle. by Gregory P. Smith · 12 years ago
  68. c2c4cb6 Fixes issue #16140: The subprocess module no longer double closes its by Gregory P. Smith · 12 years ago
  69. c8ac03d Fixes issue #16140: The subprocess module no longer double closes its by Gregory P. Smith · 12 years ago
  70. 12489d9 Fixes issue #16140: The subprocess module no longer double closes its by Gregory P. Smith · 12 years ago
  71. 8d07c26 Raise our own SubprocessError rather than a RuntimeError in when dealing with by Gregory P. Smith · 12 years ago
  72. 561cbc4 Fixes issue #16327: The subprocess module no longer leaks file descriptors by Gregory P. Smith · 12 years ago
  73. 3d8e776 Fixes issue #16327: The subprocess module no longer leaks file descriptors by Gregory P. Smith · 12 years ago
  74. a10ddb8 Fixes Issue #16114: The subprocess module no longer provides a by Gregory P. Smith · 12 years ago
  75. 5591b02 Fixes Issue #16114: The subprocess module no longer provides a by Gregory P. Smith · 12 years ago
  76. 86b0fb2 Issue #16170: Remove Linux skip from test_subprocess's test_executable test. by Chris Jerdonek · 12 years ago
  77. 2d051b8 Issue #16115: Skip a newly added subprocess.Popen() test on Linux. by Chris Jerdonek · 12 years ago
  78. 776cb19 Issue #16115: Improve testing of the executable argument to subprocess.Popen(). by Chris Jerdonek · 12 years ago
  79. a202873 revert accidental inclusion of subprocess tests by Andrew Svetlov · 12 years ago
  80. b2209cc revert accidental inclusion of subprocess tests by Andrew Svetlov · 12 years ago
  81. 5061a34 Issue #16025: Minor corrections to the zipfile documentation. by Andrew Svetlov · 12 years ago
  82. afbf90c Issue #16025: Minor corrections to the zipfile documentation. by Andrew Svetlov · 12 years ago
  83. 1a53c0c Issue #16115: Add test for check that executable arg to Popen() takes precedence over args[0] arg\n \n Patch by Kushal Das by Andrew Svetlov · 12 years ago
  84. 9a6ada8 Issue #15533: Merge update from 3.2. by Chris Jerdonek · 12 years ago
  85. c2cd626 Issue #15533: Skip test_cwd_with_relative_*() tests on Windows pending resolution of issue. by Chris Jerdonek · 12 years ago
  86. 28714c8 Issue #15533: Merge fix from 3.2. by Chris Jerdonek · 12 years ago
  87. ec3ea94 Issue #15533: Clarify docs and add tests for subprocess.Popen()'s cwd argument. by Chris Jerdonek · 12 years ago
  88. a19de80 Issue #15595: Fix subprocess.Popen(universal_newlines=True) by Andrew Svetlov · 12 years ago
  89. 8286071 Issue #15595: Fix subprocess.Popen(universal_newlines=True) by Andrew Svetlov · 12 years ago
  90. 47ec25d Brush subprocess tests a bit. by Andrew Svetlov · 12 years ago
  91. 943c5b3 Fix subprocess test broken on Windows by Andrew Svetlov · 12 years ago
  92. 5395d2f Add yet another test for subprocess.Popen.communicate by Andrew Svetlov · 12 years ago
  93. aa0dbdc Issue #15592. Fix regression: subprocess.communicate() breaks on no input with universal newlines true. by Andrew Svetlov · 12 years ago
  94. f376507 Add test to explicit check the absence regression in subprocess (issue #15592). by Andrew Svetlov · 12 years ago
  95. 6f1a40f Merge universal newlines-related fixes (issue #13119) by Antoine Pitrou · 12 years ago
  96. ec2d269 Fix universal newlines test to avoid the newline translation done by sys.stdout. by Antoine Pitrou · 12 years ago
  97. 7ded1f0 Implemented PEP 405 (Python virtual environments). by Vinay Sajip · 12 years ago
  98. b69ef16 Issue #14252: Fix subprocess.Popen.terminate() to not raise an error under Windows when the child process has already exited. by Antoine Pitrou · 12 years ago
  99. 1f9a835 Issue #14252: Fix subprocess.Popen.terminate() to not raise an error under Windows when the child process has already exited. by Antoine Pitrou · 12 years ago
  100. e7ad419 Fix sporadic test_subprocess regression introduced by 834650d63130. by Ross Lagerwall · 12 years ago