1. 4a8ea9e Fixes issue #17488: Change the subprocess.Popen bufsize parameter default value by Gregory P. Smith · 11 years ago
  2. a1b9ed3 Fixes issue #17488: Change the subprocess.Popen bufsize parameter default value by Gregory P. Smith · 11 years ago
  3. a1ed539 Fixes issue #17488: Change the subprocess.Popen bufsize parameter default value by Gregory P. Smith · 11 years ago
  4. c041735 #11963: merge with 3.3. by Ezio Melotti · 11 years ago
  5. 3300878 #11963: merge with 3.2. by Ezio Melotti · 11 years ago
  6. 42a541b #11963: remove human verification from test_parser and test_subprocess. by Ezio Melotti · 11 years ago
  7. b3f194d Issue #16903: Popen.communicate() on Unix now accepts strings when by Serhiy Storchaka · 11 years ago
  8. 6c566b3 Issue #16762: Fix some test_subprocess failures on NetBSD and OpenBSD: kill() by Charles-François Natali · 12 years ago
  9. dbc744a Issue #16762: Fix some test_subprocess failures on NetBSD and OpenBSD: kill() by Charles-François Natali · 12 years ago
  10. 53221e3 Issue #16762: Fix some test_subprocess failures on NetBSD and OpenBSD: kill() by Charles-François Natali · 12 years ago
  11. 0c8ee7f fix test for subprocess (#16644) by Andrew Svetlov · 12 years ago
  12. b172697 fix test for subprocess (#16644) by Andrew Svetlov · 12 years ago
  13. 57a1233 fix test for subprocess (#16644) by Andrew Svetlov · 12 years ago
  14. 3438fa4 Get rig of EnvironmentError (#16705) by Andrew Svetlov · 12 years ago
  15. 65ee6ec Refactor test_preexec_errpipe to not create an uncollectable reference cycle. by Gregory P. Smith · 12 years ago
  16. 859035d Refactor test_preexec_errpipe to not create an uncollectable reference cycle. by Gregory P. Smith · 12 years ago
  17. e27faac Refactor test_preexec_errpipe to not create an uncollectable reference cycle. by Gregory P. Smith · 12 years ago
  18. c2c4cb6 Fixes issue #16140: The subprocess module no longer double closes its by Gregory P. Smith · 12 years ago
  19. c8ac03d Fixes issue #16140: The subprocess module no longer double closes its by Gregory P. Smith · 12 years ago
  20. 12489d9 Fixes issue #16140: The subprocess module no longer double closes its by Gregory P. Smith · 12 years ago
  21. 8d07c26 Raise our own SubprocessError rather than a RuntimeError in when dealing with by Gregory P. Smith · 12 years ago
  22. 561cbc4 Fixes issue #16327: The subprocess module no longer leaks file descriptors by Gregory P. Smith · 12 years ago
  23. 3d8e776 Fixes issue #16327: The subprocess module no longer leaks file descriptors by Gregory P. Smith · 12 years ago
  24. a10ddb8 Fixes Issue #16114: The subprocess module no longer provides a by Gregory P. Smith · 12 years ago
  25. 5591b02 Fixes Issue #16114: The subprocess module no longer provides a by Gregory P. Smith · 12 years ago
  26. 86b0fb2 Issue #16170: Remove Linux skip from test_subprocess's test_executable test. by Chris Jerdonek · 12 years ago
  27. 2d051b8 Issue #16115: Skip a newly added subprocess.Popen() test on Linux. by Chris Jerdonek · 12 years ago
  28. 776cb19 Issue #16115: Improve testing of the executable argument to subprocess.Popen(). by Chris Jerdonek · 12 years ago
  29. a202873 revert accidental inclusion of subprocess tests by Andrew Svetlov · 12 years ago
  30. b2209cc revert accidental inclusion of subprocess tests by Andrew Svetlov · 12 years ago
  31. 5061a34 Issue #16025: Minor corrections to the zipfile documentation. by Andrew Svetlov · 12 years ago
  32. afbf90c Issue #16025: Minor corrections to the zipfile documentation. by Andrew Svetlov · 12 years ago
  33. 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
  34. 9a6ada8 Issue #15533: Merge update from 3.2. by Chris Jerdonek · 12 years ago
  35. c2cd626 Issue #15533: Skip test_cwd_with_relative_*() tests on Windows pending resolution of issue. by Chris Jerdonek · 12 years ago
  36. 28714c8 Issue #15533: Merge fix from 3.2. by Chris Jerdonek · 12 years ago
  37. ec3ea94 Issue #15533: Clarify docs and add tests for subprocess.Popen()'s cwd argument. by Chris Jerdonek · 12 years ago
  38. a19de80 Issue #15595: Fix subprocess.Popen(universal_newlines=True) by Andrew Svetlov · 12 years ago
  39. 8286071 Issue #15595: Fix subprocess.Popen(universal_newlines=True) by Andrew Svetlov · 12 years ago
  40. 47ec25d Brush subprocess tests a bit. by Andrew Svetlov · 12 years ago
  41. 943c5b3 Fix subprocess test broken on Windows by Andrew Svetlov · 12 years ago
  42. 5395d2f Add yet another test for subprocess.Popen.communicate by Andrew Svetlov · 12 years ago
  43. aa0dbdc Issue #15592. Fix regression: subprocess.communicate() breaks on no input with universal newlines true. by Andrew Svetlov · 12 years ago
  44. f376507 Add test to explicit check the absence regression in subprocess (issue #15592). by Andrew Svetlov · 12 years ago
  45. 6f1a40f Merge universal newlines-related fixes (issue #13119) by Antoine Pitrou · 12 years ago
  46. ec2d269 Fix universal newlines test to avoid the newline translation done by sys.stdout. by Antoine Pitrou · 12 years ago
  47. 7ded1f0 Implemented PEP 405 (Python virtual environments). by Vinay Sajip · 12 years ago
  48. 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
  49. 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
  50. e7ad419 Fix sporadic test_subprocess regression introduced by 834650d63130. by Ross Lagerwall · 12 years ago
  51. 2fb477c Merge 3.2: Issue #13703 plus some related test suite fixes. by Georg Brandl · 12 years ago
  52. a86b262 Fix bad inheritance in test_subprocess that led to a number of tests being executed twice. by Georg Brandl · 12 years ago
  53. 003c7a3 Fix a typo. by Ross Lagerwall · 12 years ago
  54. ab66d2a Attempt to speed up some subprocess tests (and hopefully keep them reliable). by Ross Lagerwall · 12 years ago
  55. 0648458 Fix a unittest error seen on NetBSD 5. by Gregory P. Smith · 13 years ago
  56. 886455c Fix a unittest error seen on NetBSD 5. by Gregory P. Smith · 13 years ago
  57. d635af5 Fixes issue #8052: The posix subprocess module's close_fds behavior was by Gregory P. Smith · 13 years ago
  58. 8facece Fixes issue #8052: The posix subprocess module's close_fds behavior was by Gregory P. Smith · 13 years ago
  59. ce2af33 merge 3.2 by Benjamin Peterson · 13 years ago
  60. b870aa1 we're always going to have gc by Benjamin Peterson · 13 years ago
  61. d3a345a merge 3.2 by Benjamin Peterson · 13 years ago
  62. 964561b you can't get resource.error if you can't import resource by Benjamin Peterson · 13 years ago
  63. 74adbaa Merge: Fix ResourceWarnings in test_subprocess. by Nadeem Vawda · 13 years ago
  64. 0d7cda3 Fix ResourceWarnings in test_subprocess. by Nadeem Vawda · 13 years ago
  65. 2736c5d Issue #12650: fix failures on some buildbots, when a subprocess takes a long by Charles-François Natali · 13 years ago
  66. 72d161a Issue #12650: fix failures on some buildbots, when a subprocess takes a long by Charles-François Natali · 13 years ago
  67. c07f3be merge 3.2 by Benjamin Peterson · 13 years ago
  68. 134a8ba Issue #12650: Fix a race condition where a subprocess.Popen could leak by Charles-François Natali · 13 years ago
  69. 114f0e4 Issue #12607: Merge with 3.2. by Ross Lagerwall · 13 years ago
  70. d98646e Issue #12607: In subprocess, fix issue where if stdin, stdout or stderr is by Ross Lagerwall · 13 years ago
  71. e02891b Issue #12591: Improve support of "universal newlines" in the subprocess by Antoine Pitrou · 13 years ago
  72. ab85ff3 Issue #12591: Improve support of "universal newlines" in the subprocess by Antoine Pitrou · 13 years ago
  73. 5351a1f (merge 3.2) Issue #12493: skip test_communicate_eintr() if signal.SIGALRM is missing by Victor Stinner · 13 years ago
  74. 1848db8 Issue #12493: skip test_communicate_eintr() if signal.SIGALRM is missing by Victor Stinner · 13 years ago
  75. 5b1261d (merge 3.2) Issue #12493: subprocess: communicate() handles EINTR by Victor Stinner · 13 years ago
  76. 2cfb6f3 Issue #12493: subprocess: communicate() handles EINTR by Victor Stinner · 13 years ago
  77. 8153b7a (merge 3.2) Issue #12383: skip test_empty_env() of subprocess on Windows by Victor Stinner · 13 years ago
  78. 62d5118 Issue #12383: skip test_empty_env() of subprocess on Windows by Victor Stinner · 13 years ago
  79. c0a9f75 (merge 3.2) Issue #12383: fix test_empty_env() of subprocess on Mac OS X by Victor Stinner · 13 years ago
  80. 237e5cb Issue #12383: fix test_empty_env() of subprocess on Mac OS X by Victor Stinner · 13 years ago
  81. 11cc475 (merge 3.2) Issue #12383: skip test_empty_env() if compiled is compiled in by Victor Stinner · 13 years ago
  82. 372309a Issue #12383: skip test_empty_env() if compiled is compiled in shared mode by Victor Stinner · 13 years ago
  83. 372b838 (merge 3.2) Close #12383: Fix subprocess module with env={}: don't copy the by Victor Stinner · 13 years ago
  84. f1512a2 Close #12383: Fix subprocess module with env={}: don't copy the environment by Victor Stinner · 13 years ago
  85. 149b1c7 Use a sleep for test_subprocess timeout test by Victor Stinner · 13 years ago
  86. ebbbdaf (Merge 3.2) Close #12230: Mac OS X Tiger (10.4) has a kernel bug: sometimes, by Victor Stinner · 13 years ago
  87. 88701e2 Close #12230: Mac OS X Tiger (10.4) has a kernel bug: sometimes, the file by Victor Stinner · 13 years ago
  88. 1b5b9d7 (Merge 3.2) Close #12085: Fix an attribute error in subprocess.Popen destructor by Victor Stinner · 13 years ago
  89. 87b9bc3 Close #12085: Fix an attribute error in subprocess.Popen destructor if the by Victor Stinner · 13 years ago
  90. 2d51721 Issue #12196: Add PIPE_MAX_SIZE to test.support, constant larger than the by Charles-François Natali · 13 years ago
  91. 8281ba8 follow on to the last commit, remove the final POSIXPurePythonTestCase by Gregory P. Smith · 13 years ago
  92. 59fd1bf The _posixsubprocess module is now required on POSIX. by Gregory P. Smith · 13 years ago
  93. 7439e7b Fix ProcessTestCasePOSIXPurePython to test the module from import when by Gregory P. Smith · 13 years ago
  94. c80504f Fix ProcessTestCasePOSIXPurePython to test the module from import when by Gregory P. Smith · 13 years ago
  95. c9557af merge - 7a3f3ad83676 Fixes Issue #12044. by Gregory P. Smith · 13 years ago
  96. 6b65745 - Issue #12044: Fixed subprocess.Popen when used as a context manager to by Gregory P. Smith · 13 years ago
  97. 0b9ea93 Merge with 3.2 by Ross Lagerwall · 13 years ago
  98. 02ba73c Merge with 3.1 by Ross Lagerwall · 13 years ago
  99. 4f61b02 Issue #10963: Ensure that subprocess.communicate() never raises EPIPE. by Ross Lagerwall · 13 years ago
  100. 4aeb542 Merge with 3.2 by Ross Lagerwall · 13 years ago