1. f0739cb Issue #29335: Fix subprocess.Popen.wait() when the child process has by Gregory P. Smith · 8 years ago
  2. 994f04d Issue #28998: More APIs now support longs as well as ints. by Serhiy Storchaka · 8 years ago
  3. 5e5af96 Issue #26240: Clean up the subprocess module doc string by Martin Panter · 8 years ago
  4. 253c0bf issue26083: Avoid duplicate error message string from a subprocess exec failure.Avoid a duplicate error message string from a subprocess exec failure. by Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) · 8 years ago
  5. 1edccfa Issue #22274: Redirect stderr=STDOUT when stdout not redirected, by Akira Li by Martin Panter · 8 years ago
  6. 0d207fd Fixes issue #26083: Workaround a subprocess bug that raised an incorrect by Gregory P. Smith · 9 years ago
  7. 64fa45a Fixes issue #20954: _args_from_interpreter_flags used by multiprocessing by Gregory P. Smith · 9 years ago
  8. c382807 Issue #19612: subprocess.communicate() now also ignores EINVAL when using at by Victor Stinner · 10 years ago
  9. 944996f remove unnecessary word (closes #19060) by Benjamin Peterson · 11 years ago
  10. 3061585 issue12085: Use more Pythonic way to check _child_created. by Serhiy Storchaka · 11 years ago
  11. 33fc744 Issue #18851: Avoid a double close of subprocess pipes when the child process fails starting. by Antoine Pitrou · 11 years ago
  12. 4c53314 Issue #18763: subprocess: The file descriptors are now closed after calling the by Charles-François Natali · 11 years ago
  13. f5469cf #18705: fix a number of typos. Patch by Févry Thibault. by Ezio Melotti · 11 years ago
  14. c94f07d Issue #18186: remove obsolete 2.2 compatibility comment. by Ned Deily · 11 years ago
  15. 8927e8f Issue #12098: multiprocessing on Windows now starts child processes by Kristján Valur Jónsson · 12 years ago
  16. 332562f Keep ref to ECHILD in local scope (#16650) by Andrew Svetlov · 12 years ago
  17. 211248b Fix issue #16140 bug that the fix to issue #16327 added - don't double by Gregory P. Smith · 12 years ago
  18. 9d3b6e9 Fixes issue #16327: The subprocess module no longer leaks file descriptors by Gregory P. Smith · 12 years ago
  19. f2705ae Fixes issue #14396: Handle the odd rare case of waitpid returning 0 by Gregory P. Smith · 12 years ago
  20. 0798cbc Issue #15756: subprocess.poll() now properly handles errno.ECHILD to by Gregory P. Smith · 12 years ago
  21. f60845b Issue #14252: Fix subprocess.Popen.terminate() to not raise an error under Windows when the child process has already exited. by Antoine Pitrou · 13 years ago
  22. 2a34eb3 Issue #12786: Set communication pipes used by subprocess.Popen CLOEXEC to avoid by Charles-François Natali · 13 years ago
  23. b02302c Issue #12650: Fix a race condition where a subprocess.Popen could leak by Charles-François Natali · 13 years ago
  24. d8e3901 Issue #12607: In subprocess, fix issue where if stdin, stdout or stderr is by Ross Lagerwall · 13 years ago
  25. e790131 Issue #12493: subprocess: communicate() handles EINTR by Victor Stinner · 13 years ago
  26. 776e69b Close #12085: Fix an attribute error in subprocess.Popen destructor if the by Victor Stinner · 13 years ago
  27. 20de458 whitespace fix by Brian Curtin · 13 years ago
  28. 77b7591 merge by Brian Curtin · 13 years ago
  29. 104c3f1 Issue #10963: Ensure that subprocess.communicate() never raises EPIPE. by Ross Lagerwall · 14 years ago
  30. c2077b0 #11565: Fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 14 years ago
  31. 91ce0d9 Merged revisions 87695 via svnmerge from by Antoine Pitrou · 14 years ago
  32. 312efbc Merged revisions 87233 via svnmerge from by Gregory P. Smith · 14 years ago
  33. e80513c Merged revisions 84582 via svnmerge from by Brian Curtin · 14 years ago
  34. 9a0cb6a Merged revisions 84559 via svnmerge from by Brian Curtin · 14 years ago
  35. 8e4756c #2304: fix incorporating Eric Smith's .format suggestion and tested on Ubuntu as well as Windows by Tim Golden · 14 years ago
  36. 718f222 revert 83832; unix test breakage by Benjamin Peterson · 14 years ago
  37. 6fe8c41 Issue #2304: Add additional quotes when using cmd shell on Windows. Original patch from Gabriel Genellina by Tim Golden · 14 years ago
  38. 431774f Issue #3210: Revert C module changes and apply patch from Hirokazu Yamamoto instead by Tim Golden · 14 years ago
  39. e9a6a7d Issue #9265: Incorrect name passed as arg[0] when shell=True by Stefan Krah · 14 years ago
  40. b33f0c1 Revert r60115 by Jean-Paul Calderone · 14 years ago
  41. 2b271f7 Fix regression introduced by r81154 (Issue #5099, subprocess destructor) by Victor Stinner · 14 years ago
  42. 42a0ba7 subprocess.Popen.__del__ referenced global objects, which is a no-no thanks to by Brett Cannon · 14 years ago
  43. 3d61379 Revert an accidental commit from r80492. by Brett Cannon · 15 years ago
  44. 1994969 When DeprecationWarning was silenced by default, it also silenced any use of -Q by Brett Cannon · 15 years ago
  45. a2936cf Fix #7838. Add docstrings and privatize _subprocess implementation details. by Brian Curtin · 15 years ago
  46. e5aa886 Implement #1220212. Add os.kill support for Windows. by Brian Curtin · 15 years ago
  47. cf741ce Fix syntax: "rc != None" -> "rc is not None" by Florent Xicluna · 15 years ago
  48. cce211f Issue #1068268: The subprocess module now handles EINTR in internal by Gregory P. Smith · 15 years ago
  49. 84fedf7 No need to assign the results of expressions used only for side effects. by Georg Brandl · 15 years ago
  50. 02e7dfd #7381: consistency update, and backport avoiding ``None >= 0`` check from py3k. by Georg Brandl · 15 years ago
  51. 6ab5d08 #7381: subprocess documentation and library docstring consistency fixes. by Georg Brandl · 15 years ago
  52. d19915e Issue 7294: Fixed URL in a comment. by Eric Smith · 15 years ago
  53. 8b90204 #5329: fix os.popen* regression from 2.5: don't execute commands as a sequence by Philip Jenvey · 15 years ago
  54. 3e8b869 Revert r74028. by Georg Brandl · 15 years ago
  55. 3601a38 #6482: simplify "except: raise" to "finally:". by Georg Brandl · 15 years ago
  56. 8318afa #6447: typo in subprocess docstring by Amaury Forgeot d'Arc · 15 years ago
  57. ce32eb7 #6416: Fix compilation of the select module on Windows, as well as test_subprocess: by Amaury Forgeot d'Arc · 15 years ago
  58. dd7ca24 Use select.poll() in subprocess, when available, rather than select() so that by Gregory P. Smith · 15 years ago
  59. 8c826b7 Issue #6274. Fixed a potential FD leak in subprocess.py. by Facundo Batista · 15 years ago
  60. 5fe420e #6189: The subprocess.py module should be kept compatible with python 2.2 by Amaury Forgeot d'Arc · 15 years ago
  61. eacbbdf Issue #5179: Fixed subprocess handle leak on failure on windows. by Hirokazu Yamamoto · 16 years ago
  62. 3e4caeb Issue #5341: Fix a variety of spelling errors. by Mark Dickinson · 16 years ago
  63. f3715d2 #5179: don't leak PIPE fds when child execution fails. by Georg Brandl · 16 years ago
  64. 2657680 rename the new check_call_output to check_output. its less ugly. by Gregory P. Smith · 16 years ago
  65. 97f49f4 Adds a subprocess.check_call_output() function to return the output from a by Gregory P. Smith · 16 years ago
  66. 03446c4 Remove warnings generated for the suprocess module when run under -3. Required by Brett Cannon · 16 years ago
  67. a36f8fe - Issue #1857: subprocess.Popen.poll gained an additional _deadstate keyword by Gregory P. Smith · 16 years ago
  68. f414064 - Issue #2113: Fix error in subprocess.Popen if the select system call is by Gregory P. Smith · 16 years ago
  69. 4036fd4 Fixes issue2791: subprocess.Popen.communicate leaked a file descripton until by Gregory P. Smith · 16 years ago
  70. e74c8f2 Added kill, terminate and send_signal to subprocess.Popen by Christian Heimes · 17 years ago
  71. 70eb2f9 Fix issue 1300: Quote command line arguments that contain a '|' character in by Gregory P. Smith · 17 years ago
  72. 92ffc63 Undo an unnecessary else: and indentation that r60104 added. by Gregory P. Smith · 17 years ago
  73. 87d4979 Fixes issue1336 - a race condition could occur when forking if the gc by Gregory P. Smith · 17 years ago
  74. e047e6d fix comment typos, use not arg instead of arg == "", add test coverage by Gregory P. Smith · 17 years ago
  75. 309501a #1663329: add os.closerange() to close a range of fds, by Georg Brandl · 17 years ago
  76. 81a191b Applied patch 1669481, slightly modified: Support close_fds on Win32 by Peter Astrand · 17 years ago
  77. 82be218 Remove trailing whitespace in docstring by Neal Norwitz · 17 years ago
  78. aa87fb6 Fix typo in docstring (the module is popen2, not 3). by Neal Norwitz · 17 years ago
  79. 2452298 Bug #1704790: bind name "sys" locally in __del__ method so that it is by Georg Brandl · 18 years ago
  80. ea5962f Whitespace normalization. by Tim Peters · 18 years ago
  81. 5f9c6ae Applied patch 1124861.3.patch to solve bug #1124861: Automatically create pipes on Windows, if GetStdHandle fails. Will backport. by Peter Astrand · 18 years ago
  82. f540003 We had several if statements checking the value of a fd. This is unsafe, since valid fds might be zero. We should check for not None instead. by Peter Astrand · 18 years ago
  83. f733abb Whitespace normalization. by Tim Peters · 18 years ago
  84. 10514a7 Fix for bug #1634343: allow specifying empty arguments on Windows by Peter Astrand · 18 years ago
  85. 1812f8c Avoid O(N**2) bottleneck in _communicate_(). Fixes #1598181. by Peter Astrand · 18 years ago
  86. ec05a2d Re-implemented fix for #1531862 once again, in a way that works with Python 2.2. Fixes bug #1603424. by Peter Astrand · 18 years ago
  87. a186ee2 SF bug #1623890, fix argument name in docstring by Neal Norwitz · 18 years ago
  88. 6c0e1e8 Bug #1357915: allow all sequence types for shell arguments in subprocess. by Georg Brandl · 18 years ago
  89. c36bede Fixed subprocess bug #1531862 again, after removing tests offending buildbot by Gustavo Niemeyer · 18 years ago
  90. 314bef9 Revert 51758 because it broke all the buildbots by Neal Norwitz · 18 years ago
  91. 8cb64ea Fixing #1531862: Do not close standard file descriptors in the by Gustavo Niemeyer · 18 years ago
  92. 13cf38c Guard for _active being None in __del__ method. by Georg Brandl · 18 years ago
  93. 73a9ead Whitespace normalization. by Tim Peters · 18 years ago
  94. 7d1d436 Bug #1223937: CalledProcessError.errno -> CalledProcessError.returncode. by Peter Astrand · 18 years ago
  95. 8440483 Fix doco. Backport candidate. by Neal Norwitz · 18 years ago
  96. ff355f1 Applied patch #1506758: Prevent MemoryErrors with large MAXFD. by Peter Astrand · 18 years ago
  97. ad62489 Bug #1500293: fix memory leaks in _subprocess module. by Georg Brandl · 18 years ago
  98. a6d01ce Try to fix breakage caused by patch #1479181, r45850 by Neal Norwitz · 18 years ago
  99. 17de8ff Patch #1467770: Add Popen objects to _active only in __del__. by Martin v. Löwis · 19 years ago
  100. 3a708df Changed license header: Now simply referring to PSF. This closes bug 1138653. by Peter Astrand · 19 years ago