1. dd42cb7 bpo-31961: subprocess now accepts path-like args (GH-4329) by Anders Lorentsen · 6 years ago
  2. ce0f33d bpo-32102 Add "capture_output=True" to subprocess.run (GH-5149) by Bo Bayles · 6 years ago
  3. f4d644f bpo-25942: make subprocess more graceful on ^C (GH-5026) by Gregory P. Smith · 6 years ago
  4. b2a6083 bpo-19764: Implemented support for subprocess.Popen(close_fds=True) on Windows (#1218) by Segev Finer · 7 years ago
  5. 91106cd bpo-29240: PEP 540: Add a new UTF-8 Mode (#855) by Victor Stinner · 7 years ago
  6. 747f48e bpo-32230: Set sys.warnoptions with -X dev (#4820) by Victor Stinner · 7 years ago
  7. 09f3a8a bpo-32089: Fix warnings filters in dev mode (#4482) by Victor Stinner · 7 years ago
  8. f39b674 bpo-32094: Update subprocess for -X dev (#4480) by Victor Stinner · 7 years ago
  9. b5d9e08 bpo-31884 subprocess: add Windows constants for process priority (#4150) by James · 7 years ago
  10. a5293b4 Fix miscellaneous typos (#4275) by luzpaz · 7 years ago
  11. 7fed7bd bpo-31756: subprocess.run should alias universal_newlines to text (#4049) by andyclegg · 7 years ago
  12. 88031a9 Update subprocess.communicate() docstring. by Joel Schaerer · 7 years ago
  13. 2eb0cb4 bpo-22635: Update the getstatusoutput docstring. (#3435) by Gregory P. Smith · 7 years ago
  14. a6a4dc8 bpo-31370: Remove support for threads-less builds (#3385) by Antoine Pitrou · 7 years ago
  15. 3fc499b bpo-31178: Avoid concatenating bytes with str in subprocess error (#3066) by Ammar Askar · 7 years ago
  16. 8621bb5 bpo-22536: Set the filename in FileNotFoundError. (#3194) by Gregory P. Smith · 7 years ago
  17. 4d38517 bpo-30121: Fix debug assert in subprocess on Windows (#1224) by Segev Finer · 7 years ago
  18. d174d24 bpo-30730: Prevent environment variables injection in subprocess on Windows. (#2325) by Serhiy Storchaka · 7 years ago
  19. d52aa31 bpo-30418: Popen.communicate() always ignore EINVAL (#2002) by Victor Stinner · 7 years ago
  20. 66bffd1 bpo-30065: Fixed arguments validation in _posixsubprocess.fork_exec(). (#1110) by Serhiy Storchaka · 7 years ago
  21. cb90f26 fix subprocess on Windows (#391) by Benjamin Peterson · 7 years ago
  22. f522792 allow path-like objects to be cwd on windows (#389) by Benjamin Peterson · 7 years ago
  23. ae160bb bpo-26128: Added __init__to subprocess.STARTUPINFO (#171) by Subhendu Ghosh · 7 years ago
  24. 5c8706c Issue #29335: Fix subprocess.Popen.wait() when the child process has by Gregory P. Smith · 8 years ago
  25. 78034c8 Issue #29335: Fix subprocess.Popen.wait() when the child process has by Gregory P. Smith · 8 years ago
  26. 50e16e3 Issue #29335: Fix subprocess.Popen.wait() when the child process has by Gregory P. Smith · 8 years ago
  27. 1459ca6 Merge 3.6 by Victor Stinner · 8 years ago
  28. 9505b03 Fix subprocess.Popen.__del__() fox Python shutdown by Victor Stinner · 8 years ago
  29. b35fc62 Issue #16255: subrocess.Popen uses /system/bin/sh on Android as the shell, by Xavier de Gaye · 8 years ago
  30. 82604e0 Issue #20572: Remove the subprocess.Popen.wait endtime parameter. by Gregory P. Smith · 8 years ago
  31. f0e98c5 Issue #20572: The subprocess.Popen.wait method's undocumented endtime by Gregory P. Smith · 8 years ago
  32. 3dca624 Issue #26240: Merge subprocess doc string from 3.5 into 3.6 by Martin Panter · 8 years ago
  33. 4afdca0 Issue #26240: Clean up the subprocess module doc string by Martin Panter · 8 years ago
  34. 050acae Issue #6135: Adds encoding and errors parameters to subprocess by Steve Dower · 8 years ago
  35. c206f1e subprocess: enhance ResourceWarning message by Victor Stinner · 8 years ago
  36. fcbf1ca merge from 3.5 - Fixes Issue #26373: subprocess.Popen.communicate by Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) · 8 years ago
  37. 1ef8c7e Fixes Issue #26373: subprocess.Popen.communicate now correctly ignores by Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) · 8 years ago
  38. d6da760 Issue #27167: Clarify the subprocess.CalledProcessError error message text by Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) · 8 years ago
  39. 5a48e21 subprocess now emits a ResourceWarning warning by Victor Stinner · 8 years ago
  40. a58e2c5 Issue #26741: POSIX implementation of subprocess.Popen._execute_child() now by Victor Stinner · 8 years ago
  41. f94ec1b Issue #22274: Merge stderr=STDOUT fix from 3.5 by Martin Panter · 8 years ago
  42. c763589 Issue #22274: Redirect stderr=STDOUT when stdout not redirected, by Akira Li by Martin Panter · 8 years ago
  43. 528619b Issue #26782: Add STARTUPINFO to subprocess.__all__ on Windows by Martin Panter · 8 years ago
  44. 9def284 subprocess._optim_args_from_interpreter_flags() by Victor Stinner · 9 years ago
  45. 6edadfc * Re-fix issue #19284: Don't generate the no-op -R command line by Gregory P. Smith · 9 years ago
  46. 0212c4d Re-fix issue #19284: Don't generate the no-op -R command line by Gregory P. Smith · 9 years ago
  47. 2cd1b3b Fix issue #6973: When we know a subprocess.Popen process has died, do by Gregory P. Smith · 9 years ago
  48. a0c9caa Fix issue #6973: When we know a subprocess.Popen process has died, do by Gregory P. Smith · 9 years ago
  49. 6e73000 Add a subprocess.run() function than returns a CalledProcess instance for a by Gregory P. Smith · 9 years ago
  50. cb6fdf2 issue10838: Rename the subprocess.mswindows internal global to _mswindows. by Gregory P. Smith · 9 years ago
  51. ace5586 Addresses Issue #10838: The subprocess now module includes by Gregory P. Smith · 9 years ago
  52. 86ba765 Issue #21619: Popen objects no longer leave a zombie after exit in the with by Serhiy Storchaka · 9 years ago
  53. ab900c2 Issue #21619: Popen objects no longer leave a zombie after exit in the with by Serhiy Storchaka · 9 years ago
  54. 6e6c59b Issue #23285: PEP 475 -- Retry system calls failing with EINTR. by Charles-François Natali · 9 years ago
  55. a5e881d Closes #23234: Refactor subprocess by Victor Stinner · 10 years ago
  56. 6e311aa Issue #21332: Ensure that ``bufsize=1`` in subprocess.Popen() selects line buffering, rather than block buffering. by Antoine Pitrou · 10 years ago
  57. afe8d06 Issue #21332: Ensure that ``bufsize=1`` in subprocess.Popen() selects line buffering, rather than block buffering. by Antoine Pitrou · 10 years ago
  58. ae58649 Issue #22043: time.monotonic() is now always available by Victor Stinner · 10 years ago
  59. 465e60e Issue #22033: Reprs of most Python implemened classes now contain actual by Serhiy Storchaka · 10 years ago
  60. 7be74cf Remove the obsolete MAXFD constant and Popen._close_fds() method. by Gregory P. Smith · 10 years ago
  61. b218863 subprocess's Popen.wait() is now thread safe so that multiple threads by Gregory P. Smith · 10 years ago
  62. d65ba51 subprocess's Popen.wait() is now thread safe so that multiple threads by Gregory P. Smith · 10 years ago
  63. 4f7b0c3 #10481: describe universal_newlines' effect on communicate()/check_output() output (alternately bytes or strings) by Andrew Kuchling · 10 years ago
  64. 7fa767e Issue #20976: pyflakes: Remove unused imports by Victor Stinner · 10 years ago
  65. 605765f merge 3.3 (#19060) by Benjamin Peterson · 10 years ago
  66. 5eea8a7 remove unnecessary word (closes #19060) by Benjamin Peterson · 10 years ago
  67. 5f47ac2 (Merge 3.3) Issue #19612: On Windows, subprocess.Popen.communicate() now by Victor Stinner · 10 years ago
  68. d5c8ce7 Issue #19612: On Windows, subprocess.Popen.communicate() now ignores by Victor Stinner · 10 years ago
  69. 580e007 issue12085: Use more Pythonic way to check _child_created. by Serhiy Storchaka · 10 years ago
  70. 72e7761 issue12085: Use more Pythonic way to check _child_created. by Serhiy Storchaka · 10 years ago
  71. 7b83b18 Fixes issue #19929: Call os.read with 32768 within subprocess.Popen by Gregory P. Smith · 11 years ago
  72. 589ecda Fixes issue #19929: Call os.read with 32768 within subprocess.Popen by Gregory P. Smith · 11 years ago
  73. 5ca129b Fixes issue #19506: Use a memoryview to avoid a data copy when piping data by Gregory P. Smith · 11 years ago
  74. 774f909 Fixes issue #19506: Use a memoryview to avoid a data copy when piping data by Gregory P. Smith · 11 years ago
  75. 53dd816 Fixes issue #15798: subprocess.Popen() no longer fails if file by Gregory P. Smith · 11 years ago
  76. 54532c9 Undo supposed fix for Issue #15798 until I understand why this is by Gregory P. Smith · 11 years ago
  77. 361e30c Undo supposed fix for Issue #15798 until I understand why this is by Gregory P. Smith · 11 years ago
  78. 1c27e3c Fixes Issue #15798 - subprocess.Popen() no longer fails if file by Gregory P. Smith · 11 years ago
  79. 1eda9e7 Fixes Issue #15798 - subprocess.Popen() no longer fails if file by Gregory P. Smith · 11 years ago
  80. acea823 Remove outdated comment by Tim Golden · 11 years ago
  81. fc0cad8b Remove outdated comment by Tim Golden · 11 years ago
  82. 3a4586a Issue #18923: Update subprocess to use the new selectors module. by Charles-François Natali · 11 years ago
  83. 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
  84. 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
  85. 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
  86. ac1a248 Close #19284: Handle -R properly in flag helper by Nick Coghlan · 11 years ago
  87. daf4555 Issue #18571: Implementation of the PEP 446: file descriptors and file handles by Victor Stinner · 11 years ago
  88. 9a3777e #18705: merge with 3.3. by Ezio Melotti · 11 years ago
  89. 30b9d5d #18705: fix a number of typos. Patch by Févry Thibault. by Ezio Melotti · 11 years ago
  90. 5f8e785 (3.3->default) Cleanup of documentation change from #17860 by Ronald Oussoren · 11 years ago
  91. 385521c Cleanup of documentation change from #17860 by Ronald Oussoren · 11 years ago
  92. cd171c8 Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a) by Brett Cannon · 11 years ago
  93. 22ba31a Prevent a possible double close of parent pipe fds when the subprocess by Gregory P. Smith · 11 years ago
  94. b5461b9 Prevent a possible double close of parent pipe fds when the subprocess by Gregory P. Smith · 11 years ago
  95. 0a14066 Issue #18200: Update the stdlib (except tests) to use ModuleNotFoundError. by Brett Cannon · 11 years ago
  96. fcd9f22 Issue #16624: `subprocess.check_output` now accepts an `input` argument, by Serhiy Storchaka · 11 years ago
  97. 4a8ea9e Fixes issue #17488: Change the subprocess.Popen bufsize parameter default value by Gregory P. Smith · 11 years ago
  98. a1b9ed3 Fixes issue #17488: Change the subprocess.Popen bufsize parameter default value by Gregory P. Smith · 11 years ago
  99. a1ed539 Fixes issue #17488: Change the subprocess.Popen bufsize parameter default value by Gregory P. Smith · 11 years ago
  100. e25df59 merge by Gregory P. Smith · 11 years ago