1. 6b81003 bpo-28624: Add a test that checks that cwd parameter of Popen() accepts PathLike objects (#157) (#323) by Berker Peksag · 7 years ago
  2. 9358a6e Skip the test requiring ctypes if ctypes is unavailable. by Gregory P. Smith · 7 years ago
  3. 1fa08bc Skip the test requiring ctypes if ctypes is unavailable. by Gregory P. Smith · 7 years ago
  4. 21a9b1d typo fix, extra '.' on MacOS :) by Gregory P. Smith · 7 years ago
  5. 21d333b typo fix, extra '.' :) by Gregory P. Smith · 7 years ago
  6. 78034c8 Issue #29335: Fix subprocess.Popen.wait() when the child process has by Gregory P. Smith · 7 years ago
  7. 50e16e3 Issue #29335: Fix subprocess.Popen.wait() when the child process has by Gregory P. Smith · 7 years ago
  8. f0e98c5 Issue #20572: The subprocess.Popen.wait method's undocumented endtime by Gregory P. Smith · 8 years ago
  9. 38c8b7d Issue #28662: Catch PermissionError in tests when spawning a non existent program by Xavier de Gaye · 8 years ago
  10. 0be894b Issue #27895: Spelling fixes (Contributed by Ville Skyttä). by Martin Panter · 8 years ago
  11. 050acae Issue #6135: Adds encoding and errors parameters to subprocess by Steve Dower · 8 years ago
  12. 22d0698 Adds test.support.PGO and skips tests that are not useful for PGO. by Steve Dower · 8 years ago
  13. 15f44ab Issue #27895: Spelling fixes (Contributed by Ville Skyttä). by Raymond Hettinger · 8 years ago
  14. 8bde911 Issue #27626: Merge spelling fixes from 3.5 by Martin Panter · 8 years ago
  15. eb99570 Issue #27626: Spelling fixes in docs, comments and internal names by Martin Panter · 8 years ago
  16. d141531 Issue #27472: Add test.support.unix_shell as the path to the default shell. by Xavier de Gaye · 8 years ago
  17. 7a9ddd1 merge from 3.5. (moves the issue26372 tests to the proper class) by Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) · 8 years ago
  18. 2daf8e7 Move the BrokenPipeError tests to the POSIXProcessTestCase class by Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) · 8 years ago
  19. c55014f issue26372 - use os.devnull instead of /dev/null by Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) · 8 years ago
  20. 78b642c issue26372 - use os.devnull instead of /dev/null by Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) · 8 years ago
  21. fcbf1ca merge from 3.5 - Fixes Issue #26373: subprocess.Popen.communicate by Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) · 8 years ago
  22. 1ef8c7e Fixes Issue #26373: subprocess.Popen.communicate now correctly ignores by Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) · 8 years ago
  23. b414906 issue27167: make the test not care about the exact signal name in the by Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) · 8 years ago
  24. d6da760 Issue #27167: Clarify the subprocess.CalledProcessError error message text by Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) · 8 years ago
  25. 5a48e21 subprocess now emits a ResourceWarning warning by Victor Stinner · 8 years ago
  26. 7438c61 Use "with popen:" in test_subprocess by Victor Stinner · 8 years ago
  27. f94ec1b Issue #22274: Merge stderr=STDOUT fix from 3.5 by Martin Panter · 8 years ago
  28. c763589 Issue #22274: Redirect stderr=STDOUT when stdout not redirected, by Akira Li by Martin Panter · 8 years ago
  29. a6f26c1 Remove more unused imports in tests. by Serhiy Storchaka · 8 years ago
  30. e437a10 Issue #23277: Remove unused imports in tests. by Serhiy Storchaka · 8 years ago
  31. 528619b Issue #26782: Add STARTUPINFO to subprocess.__all__ on Windows by Martin Panter · 8 years ago
  32. 06172e7 Issue #26782: Acknowledge the incomplete status of __all__ in 3.5 by Martin Panter · 8 years ago
  33. 23172bd Issue #10838: Run test__all__() everywhere, even if poll() is not available by Martin Panter · 8 years ago
  34. 5cf791b Issue #25764: Skip fork failure test when run as root by Martin Panter · 9 years ago
  35. c4b8979 Issue #25764: Merge OS X test skipping from 3.4 into 3.5 by Martin Panter · 9 years ago
  36. f7fdbda Issue #25764: Skip the test on OS X by Martin Panter · 9 years ago
  37. 6a77c2d Issue #25764: Merge subprocess fix from 3.4 into 3.5 by Martin Panter · 9 years ago
  38. afdd513 Issue #25764: Preserve subprocess fork exception when preexec_fn used by Martin Panter · 9 years ago
  39. d0a5b1c Fixes #23564: Fix a partially broken sanity check in the _posixsubprocess by Gregory P. Smith · 9 years ago
  40. 636b83f Issue #25249: Remove unneeded mkstemp helper in test_subprocess by Berker Peksag · 9 years ago
  41. 16a1f28 Issue #25249: Remove unneeded mkstemp helper in test_subprocess by Berker Peksag · 9 years ago
  42. 5fbadb6 Use support.change_cwd() in tests. by Serhiy Storchaka · 9 years ago
  43. 2a23adf Use support.change_cwd() in tests. by Serhiy Storchaka · 9 years ago
  44. ce64391 Issue #9517: Move script_helper to the support package. by Berker Peksag · 9 years ago
  45. 6e73000 Add a subprocess.run() function than returns a CalledProcess instance for a by Gregory P. Smith · 9 years ago
  46. cb6fdf2 issue10838: Rename the subprocess.mswindows internal global to _mswindows. by Gregory P. Smith · 9 years ago
  47. ace5586 Addresses Issue #10838: The subprocess now module includes by Gregory P. Smith · 9 years ago
  48. cfb5b87 Issue #21619: Cleaned up test_broken_pipe_cleanup. Patch by Martin Panter. by Serhiy Storchaka · 9 years ago
  49. f87afb0 Issue #21619: Cleaned up test_broken_pipe_cleanup. Patch by Martin Panter. by Serhiy Storchaka · 9 years ago
  50. 3737e60 Merge 3.4 (test_subprocess) by Victor Stinner · 9 years ago
  51. 20f4bd4 Issue #21619: Try to fix test_broken_pipe_cleanup() by Victor Stinner · 9 years ago
  52. 6ab0ec9 Fixed a test for issue #21619 on Windows. by Serhiy Storchaka · 9 years ago
  53. cf265fd Fixed a test for issue #21619 on Windows. by Serhiy Storchaka · 9 years ago
  54. 86ba765 Issue #21619: Popen objects no longer leave a zombie after exit in the with by Serhiy Storchaka · 9 years ago
  55. ab900c2 Issue #21619: Popen objects no longer leave a zombie after exit in the with by Serhiy Storchaka · 9 years ago
  56. 5fd174a Use os.devnull instead of hardcoded '/dev/null'. by Serhiy Storchaka · 9 years ago
  57. 85c3033 Use os.devnull instead of hardcoded '/dev/null'. by Serhiy Storchaka · 9 years ago
  58. 6e6c59b Issue #23285: PEP 475 -- Retry system calls failing with EINTR. by Charles-François Natali · 9 years ago
  59. 8f437aa Issue #22290: Fix error handling in the _posixsubprocess module. by Victor Stinner · 10 years ago
  60. afe8d06 Issue #21332: Ensure that ``bufsize=1`` in subprocess.Popen() selects line buffering, rather than block buffering. by Antoine Pitrou · 10 years ago
  61. 9204e09 fix a BytesWarning in my previous commit. by Gregory P. Smith · 10 years ago
  62. 634aa68 Isolate the subprocess test_close_fds_when_max_fd_is_lowered test so by Gregory P. Smith · 10 years ago
  63. d04f699 Skip test_subprocess test_close_fds_when_max_fd_is_lowered on FreeBSD by Gregory P. Smith · 10 years ago
  64. 8fed4de Attempt to fix the "too many open files" errors on several of the by Gregory P. Smith · 10 years ago
  65. ffd529c Explicitly wait for the child instead of letting a destructor do it. by Gregory P. Smith · 10 years ago
  66. d4dcb70 Don't restrict ourselves to a "max" fd when closing fds before exec() by Gregory P. Smith · 10 years ago
  67. c644e7c Issue #21396: Fix TextIOWrapper(..., write_through=True) to not force a flush() on the underlying binary stream. by Antoine Pitrou · 10 years ago
  68. ab2719f fix the test on windows which has different return codes from killed children. by Gregory P. Smith · 10 years ago
  69. d65ba51 subprocess's Popen.wait() is now thread safe so that multiple threads by Gregory P. Smith · 10 years ago
  70. 53dd816 Fixes issue #15798: subprocess.Popen() no longer fails if file by Gregory P. Smith · 11 years ago
  71. 54532c9 Undo supposed fix for Issue #15798 until I understand why this is by Gregory P. Smith · 11 years ago
  72. 361e30c Undo supposed fix for Issue #15798 until I understand why this is by Gregory P. Smith · 11 years ago
  73. 1c27e3c Fixes Issue #15798 - subprocess.Popen() no longer fails if file by Gregory P. Smith · 11 years ago
  74. 1eda9e7 Fixes Issue #15798 - subprocess.Popen() no longer fails if file by Gregory P. Smith · 11 years ago
  75. 5323fb0 Issue #19637: fix test_undecodable_env() of test_subprocess on AIX by Victor Stinner · 11 years ago
  76. 3a4586a Issue #18923: Update subprocess to use the new selectors module. by Charles-François Natali · 11 years ago
  77. 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
  78. 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
  79. 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
  80. 77e904e Issue #18948: improve SuppressCoreFiles to include Windows crash popup suppression, and use it in more tests. by Antoine Pitrou · 11 years ago
  81. b0478b3 Issue #18623: Factor out the _SuppressCoreFiles context manager into test.support. by Antoine Pitrou · 11 years ago
  82. f6fa22e Issue #18571: Merge duplicate test code by Victor Stinner · 11 years ago
  83. 267964c Forward port new tests from Issue #18851. by Antoine Pitrou · 11 years ago
  84. a839271 Forward port new tests from Issue #18851. by Antoine Pitrou · 11 years ago
  85. 6cc5039 Fixes Issue #15507: test_subprocess's test_send_signal could fail if the test by Gregory P. Smith · 11 years ago
  86. dee0434 Fixes issue #15507: test_subprocess's test_send_signal could fail if the test by Gregory P. Smith · 11 years ago
  87. daf4555 Issue #18571: Implementation of the PEP 446: file descriptors and file handles by Victor Stinner · 11 years ago
  88. a439b32 Merge. by Charles-François Natali · 11 years ago
  89. 249cdc3 Issue #18763: subprocess: The file descriptors are now closed after calling the by Charles-François Natali · 11 years ago
  90. 582583b Issue #17046: merge from 3.3 by Ned Deily · 11 years ago
  91. e92dfbf Issue #17046: Fix test_subprocess test_executable_without_cwd broken test case. by Ned Deily · 11 years ago
  92. 284e5ce Fix the RLIMIT_CORE resource lowering logic in test_subprocess. by Antoine Pitrou · 11 years ago
  93. a35a128 Merge. by Richard Oudkerk · 11 years ago
  94. 0e547b6 Issue #18174: Fix fd leaks in tests. by Richard Oudkerk · 11 years ago
  95. dc49b2b Try to make test more reliable (saw some sporadic failures on buildbots) by Antoine Pitrou · 11 years ago
  96. 5b6616d Try to make test more reliable (saw some sporadic failures on buildbots) by Antoine Pitrou · 11 years ago
  97. fcd9f22 Issue #16624: `subprocess.check_output` now accepts an `input` argument, by Serhiy Storchaka · 11 years ago
  98. 4a8ea9e Fixes issue #17488: Change the subprocess.Popen bufsize parameter default value by Gregory P. Smith · 11 years ago
  99. a1b9ed3 Fixes issue #17488: Change the subprocess.Popen bufsize parameter default value by Gregory P. Smith · 11 years ago
  100. a1ed539 Fixes issue #17488: Change the subprocess.Popen bufsize parameter default value by Gregory P. Smith · 11 years ago