1. 64abf37 bpo-42388: Fix subprocess.check_output input=None when text=True (GH-23467) by Gregory P. Smith · 3 years, 8 months ago
  2. 01a202a bpo-40550: Fix time-of-check/time-of-action issue in subprocess.Popen.send_signal. (GH-20010) by Filipe Laíns · 3 years, 9 months ago
  3. 23c0fb8 bpo-41586: Add pipesize parameter to subprocess & F_GETPIPE_SZ and F_SETPIPE_SZ to fcntl. (GH-21921) by Ruben Vorderman · 3 years, 10 months ago
  4. 1ed83ad bpo-40939: Remove the old parser (GH-20768) by Pablo Galindo · 4 years, 2 months ago
  5. 1def775 bpo-40334: Rename PyConfig.use_peg to _use_peg_parser (GH-19670) by Victor Stinner · 4 years, 4 months ago
  6. 48b069a bpo-39481: Implementation for PEP 585 (#18239) by Guido van Rossum · 4 years, 4 months ago
  7. 65a796e bpo-40094: Add os.waitstatus_to_exitcode() (GH-19201) by Victor Stinner · 4 years, 4 months ago
  8. c6e5c11 bpo-39489: Remove COUNT_ALLOCS special build (GH-18259) by Victor Stinner · 4 years, 6 months ago
  9. d3ae95e bpo-35182: fix communicate() crash after child closes its pipes (GH-17020) (GH-18117) by Alex Rebert · 4 years, 7 months ago
  10. e85a305 bpo-38630: Fix subprocess.Popen.send_signal() race condition (GH-16984) by Victor Stinner · 4 years, 7 months ago
  11. 4dc5a9d bpo-39019: Implement missing __class_getitem__ for subprocess classes (GH-17558) by Batuhan Taşkaya · 4 years, 8 months ago
  12. 645005e bpo-38724: Implement subprocess.Popen.__repr__ (GH-17151) by Andrey Doroschenko · 4 years, 9 months ago
  13. f3751ef bpo-38417: Add umask support to subprocess (GH-16726) by Gregory P. Smith · 4 years, 10 months ago
  14. faca855 bpo-36046: posix_spawn() doesn't support uid/gid (GH-16384) by Victor Stinner · 4 years, 11 months ago
  15. 2b2ead7 bpo-36046: Add user and group parameters to subprocess (GH-11950) by Patrick McLean · 5 years ago
  16. 580d278 bpo-37424: Avoid a hang in subprocess.run timeout output capture (GH-14490) by Gregory P. Smith · 5 years ago
  17. 182e1d1 Fix subprocess docstring typo (GH-15812) by Matthias · 5 years ago
  18. 042821a bpo-37380: subprocess: don't use _active on win (GH-14360) by Ruslan Kuprieiev · 5 years ago
  19. 60419a7 bpo-37363: Add audit events for a range of modules (GH-14301) by Steve Dower · 5 years ago
  20. 8cc605a bpo-34886: Fix subprocess.run handling of exclusive arguments (GH-11727) by Rémi Lapeyre · 5 years ago
  21. 9e3c452 bpo-31961: Fix support of path-like executables in subprocess. (GH-5914) by Serhiy Storchaka · 5 years ago
  22. 96aeaec bpo-36793: Remove unneeded __str__ definitions. (GH-13081) by Serhiy Storchaka · 5 years ago
  23. bafa848 subprocess: close pipes/fds by using ExitStack (GH-11686) by Giampaolo Rodola · 6 years ago
  24. 81d04bc Fix docstr/comment typos in _use_posix_spawn(). (GH-11684) by Gregory P. Smith · 6 years ago
  25. f6243ac bpo-35537: subprocess can use posix_spawn with pipes (GH-11575) by Victor Stinner · 6 years ago
  26. 8c34956 Revert "bpo-35537: subprocess can now use os.posix_spawnp (GH-11579)" (GH-11582) by Victor Stinner · 6 years ago
  27. 0785889 bpo-35537: subprocess can now use os.posix_spawnp (GH-11579) by Victor Stinner · 6 years ago
  28. 9daecf3 bpo-35537: subprocess uses os.posix_spawn in some cases (GH-11452) by Victor Stinner · 6 years ago
  29. 9de3632 bpo-34812: subprocess._args_from_interpreter_flags(): add isolated (GH-10675) by Victor Stinner · 6 years ago
  30. a267056 bpo-32236: open() emits RuntimeWarning if buffering=1 for binary mode (GH-4842) by Alexey Izbyshev · 6 years ago
  31. 73870bf closes bpo-32490: Fix filename duplication in subprocess exception message. (GH-9163) by Zackery Spytz · 6 years ago
  32. 880d42a bpo-8110: Refactor platform detection in subprocess (GH-9053) by Zachary Ware · 6 years ago
  33. 483422f bpo-34044: subprocess.Popen copies startupinfo (GH-8090) by Victor Stinner · 6 years ago
  34. be50a7b Revert "bpo-31961: subprocess now accepts path-like args (GH-4329)" (#5912) by Serhiy Storchaka · 6 years ago
  35. dd42cb7 bpo-31961: subprocess now accepts path-like args (GH-4329) by Anders Lorentsen · 7 years ago
  36. ce0f33d bpo-32102 Add "capture_output=True" to subprocess.run (GH-5149) by Bo Bayles · 7 years ago
  37. f4d644f bpo-25942: make subprocess more graceful on ^C (GH-5026) by Gregory P. Smith · 7 years ago
  38. b2a6083 bpo-19764: Implemented support for subprocess.Popen(close_fds=True) on Windows (#1218) by Segev Finer · 7 years ago
  39. 91106cd bpo-29240: PEP 540: Add a new UTF-8 Mode (#855) by Victor Stinner · 7 years ago
  40. 747f48e bpo-32230: Set sys.warnoptions with -X dev (#4820) by Victor Stinner · 7 years ago
  41. 09f3a8a bpo-32089: Fix warnings filters in dev mode (#4482) by Victor Stinner · 7 years ago
  42. f39b674 bpo-32094: Update subprocess for -X dev (#4480) by Victor Stinner · 7 years ago
  43. b5d9e08 bpo-31884 subprocess: add Windows constants for process priority (#4150) by James · 7 years ago
  44. a5293b4 Fix miscellaneous typos (#4275) by luzpaz · 7 years ago
  45. 7fed7bd bpo-31756: subprocess.run should alias universal_newlines to text (#4049) by andyclegg · 7 years ago
  46. 88031a9 Update subprocess.communicate() docstring. by Joel Schaerer · 7 years ago
  47. 2eb0cb4 bpo-22635: Update the getstatusoutput docstring. (#3435) by Gregory P. Smith · 7 years ago
  48. a6a4dc8 bpo-31370: Remove support for threads-less builds (#3385) by Antoine Pitrou · 7 years ago
  49. 3fc499b bpo-31178: Avoid concatenating bytes with str in subprocess error (#3066) by Ammar Askar · 7 years ago
  50. 8621bb5 bpo-22536: Set the filename in FileNotFoundError. (#3194) by Gregory P. Smith · 7 years ago
  51. 4d38517 bpo-30121: Fix debug assert in subprocess on Windows (#1224) by Segev Finer · 7 years ago
  52. d174d24 bpo-30730: Prevent environment variables injection in subprocess on Windows. (#2325) by Serhiy Storchaka · 7 years ago
  53. d52aa31 bpo-30418: Popen.communicate() always ignore EINVAL (#2002) by Victor Stinner · 7 years ago
  54. 66bffd1 bpo-30065: Fixed arguments validation in _posixsubprocess.fork_exec(). (#1110) by Serhiy Storchaka · 7 years ago
  55. cb90f26 fix subprocess on Windows (#391) by Benjamin Peterson · 7 years ago
  56. f522792 allow path-like objects to be cwd on windows (#389) by Benjamin Peterson · 7 years ago
  57. ae160bb bpo-26128: Added __init__to subprocess.STARTUPINFO (#171) by Subhendu Ghosh · 7 years ago
  58. 5c8706c Issue #29335: Fix subprocess.Popen.wait() when the child process has by Gregory P. Smith · 8 years ago
  59. 78034c8 Issue #29335: Fix subprocess.Popen.wait() when the child process has by Gregory P. Smith · 8 years ago
  60. 50e16e3 Issue #29335: Fix subprocess.Popen.wait() when the child process has by Gregory P. Smith · 8 years ago
  61. 1459ca6 Merge 3.6 by Victor Stinner · 8 years ago
  62. 9505b03 Fix subprocess.Popen.__del__() fox Python shutdown by Victor Stinner · 8 years ago
  63. b35fc62 Issue #16255: subrocess.Popen uses /system/bin/sh on Android as the shell, by Xavier de Gaye · 8 years ago
  64. 82604e0 Issue #20572: Remove the subprocess.Popen.wait endtime parameter. by Gregory P. Smith · 8 years ago
  65. f0e98c5 Issue #20572: The subprocess.Popen.wait method's undocumented endtime by Gregory P. Smith · 8 years ago
  66. 3dca624 Issue #26240: Merge subprocess doc string from 3.5 into 3.6 by Martin Panter · 8 years ago
  67. 4afdca0 Issue #26240: Clean up the subprocess module doc string by Martin Panter · 8 years ago
  68. 050acae Issue #6135: Adds encoding and errors parameters to subprocess by Steve Dower · 8 years ago
  69. c206f1e subprocess: enhance ResourceWarning message by Victor Stinner · 8 years ago
  70. fcbf1ca merge from 3.5 - Fixes Issue #26373: subprocess.Popen.communicate by Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) · 8 years ago
  71. 1ef8c7e Fixes Issue #26373: subprocess.Popen.communicate now correctly ignores by Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) · 8 years ago
  72. d6da760 Issue #27167: Clarify the subprocess.CalledProcessError error message text by Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) · 8 years ago
  73. 5a48e21 subprocess now emits a ResourceWarning warning by Victor Stinner · 8 years ago
  74. a58e2c5 Issue #26741: POSIX implementation of subprocess.Popen._execute_child() now by Victor Stinner · 8 years ago
  75. f94ec1b Issue #22274: Merge stderr=STDOUT fix from 3.5 by Martin Panter · 8 years ago
  76. c763589 Issue #22274: Redirect stderr=STDOUT when stdout not redirected, by Akira Li by Martin Panter · 8 years ago
  77. 528619b Issue #26782: Add STARTUPINFO to subprocess.__all__ on Windows by Martin Panter · 8 years ago
  78. 9def284 subprocess._optim_args_from_interpreter_flags() by Victor Stinner · 9 years ago
  79. 6edadfc * Re-fix issue #19284: Don't generate the no-op -R command line by Gregory P. Smith · 9 years ago
  80. 0212c4d Re-fix issue #19284: Don't generate the no-op -R command line by Gregory P. Smith · 9 years ago
  81. 2cd1b3b Fix issue #6973: When we know a subprocess.Popen process has died, do by Gregory P. Smith · 9 years ago
  82. a0c9caa Fix issue #6973: When we know a subprocess.Popen process has died, do by Gregory P. Smith · 9 years ago
  83. 6e73000 Add a subprocess.run() function than returns a CalledProcess instance for a by Gregory P. Smith · 9 years ago
  84. cb6fdf2 issue10838: Rename the subprocess.mswindows internal global to _mswindows. by Gregory P. Smith · 9 years ago
  85. ace5586 Addresses Issue #10838: The subprocess now module includes by Gregory P. Smith · 9 years ago
  86. 86ba765 Issue #21619: Popen objects no longer leave a zombie after exit in the with by Serhiy Storchaka · 9 years ago
  87. ab900c2 Issue #21619: Popen objects no longer leave a zombie after exit in the with by Serhiy Storchaka · 9 years ago
  88. 6e6c59b Issue #23285: PEP 475 -- Retry system calls failing with EINTR. by Charles-François Natali · 10 years ago
  89. a5e881d Closes #23234: Refactor subprocess by Victor Stinner · 10 years ago
  90. 6e311aa Issue #21332: Ensure that ``bufsize=1`` in subprocess.Popen() selects line buffering, rather than block buffering. by Antoine Pitrou · 10 years ago
  91. afe8d06 Issue #21332: Ensure that ``bufsize=1`` in subprocess.Popen() selects line buffering, rather than block buffering. by Antoine Pitrou · 10 years ago
  92. ae58649 Issue #22043: time.monotonic() is now always available by Victor Stinner · 10 years ago
  93. 465e60e Issue #22033: Reprs of most Python implemened classes now contain actual by Serhiy Storchaka · 10 years ago
  94. 7be74cf Remove the obsolete MAXFD constant and Popen._close_fds() method. by Gregory P. Smith · 10 years ago
  95. b218863 subprocess's Popen.wait() is now thread safe so that multiple threads by Gregory P. Smith · 10 years ago
  96. d65ba51 subprocess's Popen.wait() is now thread safe so that multiple threads by Gregory P. Smith · 10 years ago
  97. 4f7b0c3 #10481: describe universal_newlines' effect on communicate()/check_output() output (alternately bytes or strings) by Andrew Kuchling · 10 years ago
  98. 7fa767e Issue #20976: pyflakes: Remove unused imports by Victor Stinner · 10 years ago
  99. 605765f merge 3.3 (#19060) by Benjamin Peterson · 10 years ago
  100. 5eea8a7 remove unnecessary word (closes #19060) by Benjamin Peterson · 10 years ago