1. 02e7dfd #7381: consistency update, and backport avoiding ``None >= 0`` check from py3k. by Georg Brandl · 15 years ago
  2. 6ab5d08 #7381: subprocess documentation and library docstring consistency fixes. by Georg Brandl · 15 years ago
  3. d19915e Issue 7294: Fixed URL in a comment. by Eric Smith · 15 years ago
  4. 8b90204 #5329: fix os.popen* regression from 2.5: don't execute commands as a sequence by Philip Jenvey · 15 years ago
  5. 3e8b869 Revert r74028. by Georg Brandl · 15 years ago
  6. 3601a38 #6482: simplify "except: raise" to "finally:". by Georg Brandl · 15 years ago
  7. 8318afa #6447: typo in subprocess docstring by Amaury Forgeot d'Arc · 15 years ago
  8. ce32eb7 #6416: Fix compilation of the select module on Windows, as well as test_subprocess: by Amaury Forgeot d'Arc · 15 years ago
  9. dd7ca24 Use select.poll() in subprocess, when available, rather than select() so that by Gregory P. Smith · 15 years ago
  10. 8c826b7 Issue #6274. Fixed a potential FD leak in subprocess.py. by Facundo Batista · 15 years ago
  11. 5fe420e #6189: The subprocess.py module should be kept compatible with python 2.2 by Amaury Forgeot d'Arc · 15 years ago
  12. eacbbdf Issue #5179: Fixed subprocess handle leak on failure on windows. by Hirokazu Yamamoto · 15 years ago
  13. 3e4caeb Issue #5341: Fix a variety of spelling errors. by Mark Dickinson · 15 years ago
  14. f3715d2 #5179: don't leak PIPE fds when child execution fails. by Georg Brandl · 15 years ago
  15. 2657680 rename the new check_call_output to check_output. its less ugly. by Gregory P. Smith · 16 years ago
  16. 97f49f4 Adds a subprocess.check_call_output() function to return the output from a by Gregory P. Smith · 16 years ago
  17. 03446c4 Remove warnings generated for the suprocess module when run under -3. Required by Brett Cannon · 16 years ago
  18. a36f8fe - Issue #1857: subprocess.Popen.poll gained an additional _deadstate keyword by Gregory P. Smith · 16 years ago
  19. f414064 - Issue #2113: Fix error in subprocess.Popen if the select system call is by Gregory P. Smith · 16 years ago
  20. 4036fd4 Fixes issue2791: subprocess.Popen.communicate leaked a file descripton until by Gregory P. Smith · 16 years ago
  21. e74c8f2 Added kill, terminate and send_signal to subprocess.Popen by Christian Heimes · 16 years ago
  22. 70eb2f9 Fix issue 1300: Quote command line arguments that contain a '|' character in by Gregory P. Smith · 17 years ago
  23. 92ffc63 Undo an unnecessary else: and indentation that r60104 added. by Gregory P. Smith · 17 years ago
  24. 87d4979 Fixes issue1336 - a race condition could occur when forking if the gc by Gregory P. Smith · 17 years ago
  25. e047e6d fix comment typos, use not arg instead of arg == "", add test coverage by Gregory P. Smith · 17 years ago
  26. 309501a #1663329: add os.closerange() to close a range of fds, by Georg Brandl · 17 years ago
  27. 81a191b Applied patch 1669481, slightly modified: Support close_fds on Win32 by Peter Astrand · 17 years ago
  28. 82be218 Remove trailing whitespace in docstring by Neal Norwitz · 17 years ago
  29. aa87fb6 Fix typo in docstring (the module is popen2, not 3). by Neal Norwitz · 17 years ago
  30. 2452298 Bug #1704790: bind name "sys" locally in __del__ method so that it is by Georg Brandl · 17 years ago
  31. ea5962f Whitespace normalization. by Tim Peters · 17 years ago
  32. 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
  33. 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
  34. f733abb Whitespace normalization. by Tim Peters · 18 years ago
  35. 10514a7 Fix for bug #1634343: allow specifying empty arguments on Windows by Peter Astrand · 18 years ago
  36. 1812f8c Avoid O(N**2) bottleneck in _communicate_(). Fixes #1598181. by Peter Astrand · 18 years ago
  37. 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
  38. a186ee2 SF bug #1623890, fix argument name in docstring by Neal Norwitz · 18 years ago
  39. 6c0e1e8 Bug #1357915: allow all sequence types for shell arguments in subprocess. by Georg Brandl · 18 years ago
  40. c36bede Fixed subprocess bug #1531862 again, after removing tests offending buildbot by Gustavo Niemeyer · 18 years ago
  41. 314bef9 Revert 51758 because it broke all the buildbots by Neal Norwitz · 18 years ago
  42. 8cb64ea Fixing #1531862: Do not close standard file descriptors in the by Gustavo Niemeyer · 18 years ago
  43. 13cf38c Guard for _active being None in __del__ method. by Georg Brandl · 18 years ago
  44. 73a9ead Whitespace normalization. by Tim Peters · 18 years ago
  45. 7d1d436 Bug #1223937: CalledProcessError.errno -> CalledProcessError.returncode. by Peter Astrand · 18 years ago
  46. 8440483 Fix doco. Backport candidate. by Neal Norwitz · 18 years ago
  47. ff355f1 Applied patch #1506758: Prevent MemoryErrors with large MAXFD. by Peter Astrand · 18 years ago
  48. ad62489 Bug #1500293: fix memory leaks in _subprocess module. by Georg Brandl · 18 years ago
  49. a6d01ce Try to fix breakage caused by patch #1479181, r45850 by Neal Norwitz · 18 years ago
  50. 17de8ff Patch #1467770: Add Popen objects to _active only in __del__. by Martin v. Löwis · 18 years ago
  51. 3a708df Changed license header: Now simply referring to PSF. This closes bug 1138653. by Peter Astrand · 19 years ago
  52. eba28be Whitespace normalization. by Tim Peters · 19 years ago
  53. 7e78ade Corrected bug in list2cmdline wrt backslashes. Fixes #1083306. by Peter Astrand · 19 years ago
  54. 23109f0 Optimization for communicate(): If only one of stdin/stdout/stderr is by Peter Astrand · 19 years ago
  55. c26516b Made the module compatible with Python 2.2 again. by Peter Astrand · 19 years ago
  56. 69bf13f Added copyright notice: Licensed to PSF under a Contributor Agreement. by Peter Astrand · 19 years ago
  57. d38ddf4 Patch from Leandro Lucarella: replaced: by Peter Astrand · 19 years ago
  58. f715366 Reduce the usage of the types module. by Raymond Hettinger · 20 years ago
  59. f791d7a On UNIX, when the execution of the child fails, we must waitpid() to by Peter Astrand · 20 years ago
  60. 454f767 New subprocess utility function: check_call. Closes #1071764. by Peter Astrand · 20 years ago
  61. 5f5e141 Changed signature of call function to avoid confusion: this 'args' is not the same as the one to the Popen constructor by Peter Astrand · 20 years ago
  62. 738131d Raise TypeError if bufsize argument is not an integer. Patch 1071755, slightly modified. by Peter Astrand · 20 years ago
  63. 6fdf3cb Corrected example for replacing shell pipeline. Fixes bug 1073790. by Peter Astrand · 20 years ago
  64. c1d6536 When using shell=True on Windows, don't display a shell window by default. Fixes #1057061. by Peter Astrand · 20 years ago
  65. 837dd93 Fix docstring formatting of escape sequences. by Raymond Hettinger · 20 years ago
  66. 15aaacc return codes are available on all platforms, not just on Unix by Fredrik Lundh · 20 years ago
  67. 3e73a01 Replace dynamic try/except with "if 0", to keep py2exe happy. If you by Fredrik Lundh · 20 years ago
  68. e8374a5 Folded long lines. by Tim Peters · 20 years ago
  69. e718f61 Whitespace normalization. by Tim Peters · 20 years ago
  70. 51ee66e Typo fix by Andrew M. Kuchling · 20 years ago
  71. 5b3687d Added Peter Astrand's subprocess module. by Fredrik Lundh · 20 years ago