1. 78034c8 Issue #29335: Fix subprocess.Popen.wait() when the child process has by Gregory P. Smith · 7 years ago
  2. 50e16e3 Issue #29335: Fix subprocess.Popen.wait() when the child process has by Gregory P. Smith · 7 years ago
  3. 9505b03 Fix subprocess.Popen.__del__() fox Python shutdown by Victor Stinner · 7 years ago
  4. f0e98c5 Issue #20572: The subprocess.Popen.wait method's undocumented endtime by Gregory P. Smith · 8 years ago
  5. 3dca624 Issue #26240: Merge subprocess doc string from 3.5 into 3.6 by Martin Panter · 8 years ago
  6. 4afdca0 Issue #26240: Clean up the subprocess module doc string by Martin Panter · 8 years ago
  7. 050acae Issue #6135: Adds encoding and errors parameters to subprocess by Steve Dower · 8 years ago
  8. c206f1e subprocess: enhance ResourceWarning message by Victor Stinner · 8 years ago
  9. fcbf1ca merge from 3.5 - Fixes Issue #26373: subprocess.Popen.communicate by Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) · 8 years ago
  10. 1ef8c7e Fixes Issue #26373: subprocess.Popen.communicate now correctly ignores by Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) · 8 years ago
  11. d6da760 Issue #27167: Clarify the subprocess.CalledProcessError error message text by Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) · 8 years ago
  12. 5a48e21 subprocess now emits a ResourceWarning warning by Victor Stinner · 8 years ago
  13. a58e2c5 Issue #26741: POSIX implementation of subprocess.Popen._execute_child() now by Victor Stinner · 8 years ago
  14. f94ec1b Issue #22274: Merge stderr=STDOUT fix from 3.5 by Martin Panter · 8 years ago
  15. c763589 Issue #22274: Redirect stderr=STDOUT when stdout not redirected, by Akira Li by Martin Panter · 8 years ago
  16. 528619b Issue #26782: Add STARTUPINFO to subprocess.__all__ on Windows by Martin Panter · 8 years ago
  17. 9def284 subprocess._optim_args_from_interpreter_flags() by Victor Stinner · 8 years ago
  18. 6edadfc * Re-fix issue #19284: Don't generate the no-op -R command line by Gregory P. Smith · 8 years ago
  19. 0212c4d Re-fix issue #19284: Don't generate the no-op -R command line by Gregory P. Smith · 8 years ago
  20. 2cd1b3b Fix issue #6973: When we know a subprocess.Popen process has died, do by Gregory P. Smith · 9 years ago
  21. a0c9caa Fix issue #6973: When we know a subprocess.Popen process has died, do by Gregory P. Smith · 9 years ago
  22. 6e73000 Add a subprocess.run() function than returns a CalledProcess instance for a by Gregory P. Smith · 9 years ago
  23. cb6fdf2 issue10838: Rename the subprocess.mswindows internal global to _mswindows. by Gregory P. Smith · 9 years ago
  24. ace5586 Addresses Issue #10838: The subprocess now module includes by Gregory P. Smith · 9 years ago
  25. 86ba765 Issue #21619: Popen objects no longer leave a zombie after exit in the with by Serhiy Storchaka · 9 years ago
  26. ab900c2 Issue #21619: Popen objects no longer leave a zombie after exit in the with by Serhiy Storchaka · 9 years ago
  27. 6e6c59b Issue #23285: PEP 475 -- Retry system calls failing with EINTR. by Charles-François Natali · 9 years ago
  28. a5e881d Closes #23234: Refactor subprocess by Victor Stinner · 9 years ago
  29. 6e311aa Issue #21332: Ensure that ``bufsize=1`` in subprocess.Popen() selects line buffering, rather than block buffering. by Antoine Pitrou · 10 years ago
  30. afe8d06 Issue #21332: Ensure that ``bufsize=1`` in subprocess.Popen() selects line buffering, rather than block buffering. by Antoine Pitrou · 10 years ago
  31. ae58649 Issue #22043: time.monotonic() is now always available by Victor Stinner · 10 years ago
  32. 465e60e Issue #22033: Reprs of most Python implemened classes now contain actual by Serhiy Storchaka · 10 years ago
  33. 7be74cf Remove the obsolete MAXFD constant and Popen._close_fds() method. by Gregory P. Smith · 10 years ago
  34. b218863 subprocess's Popen.wait() is now thread safe so that multiple threads by Gregory P. Smith · 10 years ago
  35. d65ba51 subprocess's Popen.wait() is now thread safe so that multiple threads by Gregory P. Smith · 10 years ago
  36. 4f7b0c3 #10481: describe universal_newlines' effect on communicate()/check_output() output (alternately bytes or strings) by Andrew Kuchling · 10 years ago
  37. 7fa767e Issue #20976: pyflakes: Remove unused imports by Victor Stinner · 10 years ago
  38. 605765f merge 3.3 (#19060) by Benjamin Peterson · 10 years ago
  39. 5eea8a7 remove unnecessary word (closes #19060) by Benjamin Peterson · 10 years ago
  40. 5f47ac2 (Merge 3.3) Issue #19612: On Windows, subprocess.Popen.communicate() now by Victor Stinner · 10 years ago
  41. d5c8ce7 Issue #19612: On Windows, subprocess.Popen.communicate() now ignores by Victor Stinner · 10 years ago
  42. 580e007 issue12085: Use more Pythonic way to check _child_created. by Serhiy Storchaka · 10 years ago
  43. 72e7761 issue12085: Use more Pythonic way to check _child_created. by Serhiy Storchaka · 10 years ago
  44. 7b83b18 Fixes issue #19929: Call os.read with 32768 within subprocess.Popen by Gregory P. Smith · 10 years ago
  45. 589ecda Fixes issue #19929: Call os.read with 32768 within subprocess.Popen by Gregory P. Smith · 10 years ago
  46. 5ca129b Fixes issue #19506: Use a memoryview to avoid a data copy when piping data by Gregory P. Smith · 10 years ago
  47. 774f909 Fixes issue #19506: Use a memoryview to avoid a data copy when piping data by Gregory P. Smith · 10 years ago
  48. 53dd816 Fixes issue #15798: subprocess.Popen() no longer fails if file by Gregory P. Smith · 10 years ago
  49. 54532c9 Undo supposed fix for Issue #15798 until I understand why this is by Gregory P. Smith · 10 years ago
  50. 361e30c Undo supposed fix for Issue #15798 until I understand why this is by Gregory P. Smith · 10 years ago
  51. 1c27e3c Fixes Issue #15798 - subprocess.Popen() no longer fails if file by Gregory P. Smith · 10 years ago
  52. 1eda9e7 Fixes Issue #15798 - subprocess.Popen() no longer fails if file by Gregory P. Smith · 10 years ago
  53. acea823 Remove outdated comment by Tim Golden · 11 years ago
  54. fc0cad8b Remove outdated comment by Tim Golden · 11 years ago
  55. 3a4586a Issue #18923: Update subprocess to use the new selectors module. by Charles-François Natali · 11 years ago
  56. 6079814 Issue #10197 Tweak docs for subprocess.getstatusoutput and align the documentation, the module docstring, and the function docstring. by Tim Golden · 11 years ago
  57. 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
  58. 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
  59. ac1a248 Close #19284: Handle -R properly in flag helper by Nick Coghlan · 11 years ago
  60. daf4555 Issue #18571: Implementation of the PEP 446: file descriptors and file handles by Victor Stinner · 11 years ago
  61. 9a3777e #18705: merge with 3.3. by Ezio Melotti · 11 years ago
  62. 30b9d5d #18705: fix a number of typos. Patch by Févry Thibault. by Ezio Melotti · 11 years ago
  63. 5f8e785 (3.3->default) Cleanup of documentation change from #17860 by Ronald Oussoren · 11 years ago
  64. 385521c Cleanup of documentation change from #17860 by Ronald Oussoren · 11 years ago
  65. cd171c8 Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a) by Brett Cannon · 11 years ago
  66. 22ba31a Prevent a possible double close of parent pipe fds when the subprocess by Gregory P. Smith · 11 years ago
  67. b5461b9 Prevent a possible double close of parent pipe fds when the subprocess by Gregory P. Smith · 11 years ago
  68. 0a14066 Issue #18200: Update the stdlib (except tests) to use ModuleNotFoundError. by Brett Cannon · 11 years ago
  69. fcd9f22 Issue #16624: `subprocess.check_output` now accepts an `input` argument, by Serhiy Storchaka · 11 years ago
  70. 4a8ea9e Fixes issue #17488: Change the subprocess.Popen bufsize parameter default value by Gregory P. Smith · 11 years ago
  71. a1b9ed3 Fixes issue #17488: Change the subprocess.Popen bufsize parameter default value by Gregory P. Smith · 11 years ago
  72. a1ed539 Fixes issue #17488: Change the subprocess.Popen bufsize parameter default value by Gregory P. Smith · 11 years ago
  73. e25df59 merge by Gregory P. Smith · 11 years ago
  74. 74b2404 merge by Gregory P. Smith · 11 years ago
  75. 1f8a40b remove the long obsolete mention of universal newlines mode only being by Gregory P. Smith · 11 years ago
  76. 016b9e3 Use a larger amount of data for tests such as the interrupted_write by Gregory P. Smith · 11 years ago
  77. 91110f5 Use a larger amount of data for tests such as the interrupted_write by Gregory P. Smith · 11 years ago
  78. b3f194d Issue #16903: Popen.communicate() on Unix now accepts strings when by Serhiy Storchaka · 11 years ago
  79. f7a17b4 Replace IOError with OSError (#16715) by Andrew Svetlov · 11 years ago
  80. 1d960fe Keep ref to ECHILD in local scope (#16650) by Andrew Svetlov · 11 years ago
  81. 5b187ce Keep ref to ECHILD in local scope (#16650) by Andrew Svetlov · 11 years ago
  82. 08bab07 Keep ref to ECHILD in local scope (#16650) by Andrew Svetlov · 11 years ago
  83. 445ad99 Fix #14470. Remove w9xpopen per PEP 11. by Brian Curtin · 11 years ago
  84. ad28c7f Issue #16706: get rid of os.error by Andrew Svetlov · 11 years ago
  85. 3438fa4 Get rig of EnvironmentError (#16705) by Andrew Svetlov · 11 years ago
  86. 6d8a122 Issue #16704: Get rid of select.error in stdlib. Use OSError instead. by Andrew Svetlov · 11 years ago
  87. df485ca Remove obsolete code: now IOError and WindowsError are aliases for OSError by Andrew Svetlov · 11 years ago
  88. c2c4cb6 Fixes issue #16140: The subprocess module no longer double closes its by Gregory P. Smith · 12 years ago
  89. c8ac03d Fixes issue #16140: The subprocess module no longer double closes its by Gregory P. Smith · 12 years ago
  90. 12489d9 Fixes issue #16140: The subprocess module no longer double closes its by Gregory P. Smith · 12 years ago
  91. d4b645e Remove the subprocess "bad exception data" warning (formerly a print!) by Gregory P. Smith · 12 years ago
  92. 6893732 Remove the subprocess "bad exception data" warning (formerly a print!) by Gregory P. Smith · 12 years ago
  93. 3aee222 Remove the subprocess "bad exception data" warning (formerly a print!) by Gregory P. Smith · 12 years ago
  94. 8d07c26 Raise our own SubprocessError rather than a RuntimeError in when dealing with by Gregory P. Smith · 12 years ago
  95. 1f83866 Rename a local variable for readability and change a "this can't by Gregory P. Smith · 12 years ago
  96. f44c9da Rename a local variable for readability and change a "this can't by Gregory P. Smith · 12 years ago
  97. 561cbc4 Fixes issue #16327: The subprocess module no longer leaks file descriptors by Gregory P. Smith · 12 years ago
  98. 3d8e776 Fixes issue #16327: The subprocess module no longer leaks file descriptors by Gregory P. Smith · 12 years ago
  99. f328d79 Fixes issue #14396: Handle the odd rare case of waitpid returning 0 by Gregory P. Smith · 12 years ago
  100. 2ec8233 Fixes issue #14396: Handle the odd rare case of waitpid returning 0 when by Gregory P. Smith · 12 years ago