- 51ee270 issue7213: Open the pipes used by subprocesses with the FD_CLOEXEC flag from by Gregory P. Smith · 14 years ago
- f560485 Get rid of the close_fds DeprecationWarning. Changes the default on a per by Gregory P. Smith · 14 years ago
- b416230 refactor the warning test. by Gregory P. Smith · 14 years ago
- d23047b issue7213 + issue2320: Cause a DeprecationWarning if the close_fds argument is by Gregory P. Smith · 14 years ago
- 79cdb66 Fix #10554. Added context manager support to Popen objects. by Brian Curtin · 14 years ago
- b3aedd4 #9424: Replace deprecated assert* methods in the Python test suite. by Ezio Melotti · 14 years ago
- 5f78040 add filename to ENOENT message #4925 by Benjamin Peterson · 14 years ago
- 19a5379 Fix a number of ResourceWarnings on Windows due to open pipes. by Brian Curtin · 14 years ago
- 3c6a951 Add cleanups to stdout/stderr pipes to remove ResourceWarnings. by Brian Curtin · 14 years ago
- cc221b2 close some more files by Benjamin Peterson · 14 years ago
- f6782ac test_subprocess: use surrogateescape error handler to write shell scripts by Victor Stinner · 14 years ago
- 89f3ad1 test_subprocess doesn't need to C locale to test os.environb by Victor Stinner · 14 years ago
- ebc78d2 test_subprocess: use C locale to get ascii locale encoding by Victor Stinner · 14 years ago
- 8f6b6b0 Issue #9992: Remove PYTHONFSENCODING environment variable. by Victor Stinner · 14 years ago
- a4024e2 Make _kill_process more robust under Windows too (see issue #8432) by Antoine Pitrou · 14 years ago
- 3d8580f Try a more robust implementation of _kill_process by Antoine Pitrou · 14 years ago
- 84e751a Try to fix buildbot failure (#9902) by Antoine Pitrou · 14 years ago
- fedd481 Try to make signal-sending tests in test_subprocess more robust on slow machines by Antoine Pitrou · 14 years ago
- fb8db8f Try to fix test_subprocess on "x86 debian parallel 3.x" buildbot by Antoine Pitrou · 14 years ago
- 8db3027 Issue #9895: speed up test_subprocess by Antoine Pitrou · 14 years ago
- 679e0f2 Issue #9894: Do not hardcode ENOENT in test_subprocess. by Antoine Pitrou · 14 years ago
- d835cf1 Fix #9588. Add sys.executable to two shell=True tests. by Brian Curtin · 14 years ago
- 126c296 #2304: fix incorporating Eric Smith's .format suggestion and tested on Ubuntu as well as Windows by Tim Golden · 14 years ago
- 1a0a737 revert r83830, breaks tests on unixes by Benjamin Peterson · 14 years ago
- e3f7616 Issue #2304: Add additional quotes when using cmd shell on Windows. Original patch from Gabriel Genellina by Tim Golden · 14 years ago
- af5ac39 Issue #3210: Ensure stdio handles are closed if CreateProcess fails by Tim Golden · 14 years ago
- 62f68ed Factor out stripping of interpreter debug output in test.support.strip_python_stderr() by Antoine Pitrou · 14 years ago
- 102d11a Workaround for issue 4047: in some configurations of by Ronald Oussoren · 14 years ago
- 9542cc6 Issue #9265: Incorrect name passed as arg[0] when shell=True by Stefan Krah · 14 years ago
- 1ddd407 Merged revisions 82075 via svnmerge from by Jean-Paul Calderone · 14 years ago
- b369358 Issue #8780: Fix a regression introduced by r78946 in subprocess on Windows by Victor Stinner · 14 years ago
- b745a74 Issue #8513: os.get_exec_path() supports b'PATH' key and bytes value. by Victor Stinner · 14 years ago
- 84ae118 Issue #8603: Create a bytes version of os.environ for Unix by Victor Stinner · 15 years ago
- ce2d24d Fix test_undecodable_env of test_subproces for non-ASCII directory by Victor Stinner · 15 years ago
- 13bb71c Issue #8391: os.execvpe() and os.getenv() supports unicode with surrogates and by Victor Stinner · 15 years ago
- 4d07804 Issue #8467: Pure Python implementation of subprocess encodes the error message by Victor Stinner · 15 years ago
- c049d87 Merged revisions 79344,79346,79350 via svnmerge from by Florent Xicluna · 15 years ago
- 32ec9da * Fix a refleak when a preexec_fn was supplied (preexec_fn_args_tuple was not by Gregory P. Smith · 15 years ago
- fb94c5f * Replaces the internals of the subprocess module from fork through exec on by Gregory P. Smith · 15 years ago
- 1d1ab97 Merged revisions 78833 via svnmerge from by Florent Xicluna · 15 years ago
- ecf021c Merged revisions 78830 via svnmerge from by Florent Xicluna · 15 years ago
- 4886d24 Merged revisions 78736,78759,78761,78767,78788-78789 via svnmerge from by Florent Xicluna · 15 years ago
- fadf93a Merged revisions 78721 via svnmerge from by Florent Xicluna · 15 years ago
- 0cc3df8 Merged revisions 78704 via svnmerge from by Florent Xicluna · 15 years ago
- 1d8ee3a Merged revisions 78701 via svnmerge from by Florent Xicluna · 15 years ago
- b8f22b1 Merged revisions 78673 via svnmerge from by Florent Xicluna · 15 years ago
- 6f66648 Remove some debug line... by Florent Xicluna · 15 years ago
- 129226d Merged revisions 78671 via svnmerge from by Florent Xicluna · 15 years ago
- f0cbd82 Merged revisions 78661-78662 via svnmerge from by Florent Xicluna · 15 years ago
- af6d3b8 Merged revisions 78532 via svnmerge from by Gregory P. Smith · 15 years ago
- a59c59f Merged revisions 78523 via svnmerge from by Gregory P. Smith · 15 years ago
- b1e94e8 Recorded merge of revisions 78508-78509 via svnmerge from by Florent Xicluna · 15 years ago
- 184bdfb Merged revisions 78136 via svnmerge from by Ezio Melotti · 15 years ago
- 577473f use assert[Not]In where appropriate by Benjamin Peterson · 15 years ago
- ace3102 Merged revisions 73916 via svnmerge from by Amaury Forgeot d'Arc · 15 years ago
- d06fa47 Merged revisions 73825-73826 via svnmerge from by Gregory P. Smith · 15 years ago
- c9c0f20 convert old fail* assertions to assert* by Benjamin Peterson · 15 years ago
- 5550365 Fix test_subprocess so that it works when launched from another directory than by Antoine Pitrou · 16 years ago
- 4b06819 fix None errno #5312 by Benjamin Peterson · 16 years ago
- d75fcb4 Merged revisions 69576,69579-69580,69589,69619-69620,69633,69703-69704,69728-69730 via svnmerge from by Benjamin Peterson · 16 years ago
- f973407 Merged revisions 67511,67536-67537,67543 via svnmerge from by Georg Brandl · 16 years ago
- 9cadb1b Issue #3782: os.write() must not accept unicode strings by Antoine Pitrou · 16 years ago
- 1abcbf8 #2683: Popen.communicate() argument must be bytes. by Georg Brandl · 16 years ago
- f08a9dd Merged revisions 63724,63726,63732,63744,63754-63755,63757-63758,63760,63775,63781-63782,63787,63805-63808,63818-63819,63823-63824 via svnmerge from by Georg Brandl · 16 years ago
- a23810f The commands module has been removed. The getoutput() and getstatusoutput() by Brett Cannon · 16 years ago
- a37cfc6 Merged revisions 63402,63405,63411,63457,63467-63468,63480,63507-63508,63516,63534,63541 via svnmerge from by Benjamin Peterson · 16 years ago
- ee8712c #2621 rename test.test_support to test.support by Benjamin Peterson · 16 years ago
- 75ca4ea Merged revisions 62792,62799-62800 via svnmerge from by Christian Heimes · 17 years ago
- a342c01 Merged revisions 62386-62387,62389-62393,62396,62400-62402,62407,62409-62410,62412-62414,62418-62419 via svnmerge from by Christian Heimes · 17 years ago
- fdab48e Merged revisions 60094-60123 via svnmerge from by Christian Heimes · 17 years ago
- 5fb7c2a Merged revisions 59565-59594 via svnmerge from by Christian Heimes · 17 years ago
- 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
- c12a813 Patch # 1331 by Christian Heimes. by Guido van Rossum · 17 years ago
- 4043001 Make str/str8 comparisons return True/False for !=/==. by Brett Cannon · 17 years ago
- bb839ef More str/bytes goodness. by Guido van Rossum · 17 years ago
- 93c5682 Use unicode (and bytes as appropriate) by Neal Norwitz · 17 years ago
- cd16bf6 Merged revisions 55817-55961 via svnmerge from by Guido van Rossum · 17 years ago
- 46a05a7 The bufsize argument to Popen() should accept None meaning the default (0). by Guido van Rossum · 17 years ago
- e7ba495 Merged revisions 55631-55794 via svnmerge from by Guido van Rossum · 17 years ago
- fa0054a Make test_subprocess work. Fix universal newlines in io.py. by Guido van Rossum · 17 years ago
- c9e363c Make test_subprocess pass. The subprocess module now reads and writes by Guido van Rossum · 17 years ago
- 88fc664 * Remove PRINT_ITEM(_TO), PRINT_NEWLINE(_TO) opcodes. by Georg Brandl · 18 years ago
- fc7bb8c Merged revisions 53304-53433,53435-53450 via svnmerge from by Thomas Wouters · 18 years ago
- b940e11 SF patch 1631942 by Collin Winter: by Guido van Rossum · 18 years ago
- 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
- 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
- 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
- eba28be Whitespace normalization. by Tim Peters · 20 years ago
- 653a5ad Tweak test_communicate_stderr so that it works when run under a pydebug build. by Brett Cannon · 20 years ago
- f7f1bb7 Only run extensive subprocess tests if -usubprocess to regrtest is specified. Fixes #1124637 by Peter Astrand · 20 years ago
- cbac93c Added three more testcases: Using communicate with only one of by Peter Astrand · 20 years ago
- 454f767 New subprocess utility function: check_call. Closes #1071764. by Peter Astrand · 20 years ago
- 738131d Raise TypeError if bufsize argument is not an integer. Patch 1071755, slightly modified. by Peter Astrand · 20 years ago
- 2224be6 Remove tempfile after use in test_call_string. by Peter Astrand · 20 years ago
- 195404f Use os.chdir/os.getcwd instead of os.path.realpath, to support Tru64 by Peter Astrand · 20 years ago
- c19ccc9 Removed test_close_fds, because it's too unreliable. We simply cannot by Peter Astrand · 20 years ago
- 1dbf243 remove_stderr_debug_decorations(): Always try the substitution. Else by Tim Peters · 20 years ago
- 9e29fc5 Don't spend quite as much time looking for leaks on Windows, where by Fredrik Lundh · 20 years ago
- 59c0559 normalize case when comparing directory names (problem reported by by Fredrik Lundh · 20 years ago
- 3761e8d New helper remove_stderr_debug_decorations(). This test passes in a by Tim Peters · 20 years ago