summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_subprocess.py
Commit message (Expand)AuthorAgeFilesLines
* #2777: Apply same recipe for test_terminate and test_kill, i.e. close or redi...Florent Xicluna2010-03-061-2/+4
* #2777: Handle fds more carefully to try to fix some x86-Linux failures (namel...Florent Xicluna2010-03-051-3/+6
* These line should not be there.Florent Xicluna2010-03-051-1/+0
* Let's use assertIsNone / assertIsNotNone. It's hype.Florent Xicluna2010-03-051-5/+5
* Workaround #3137: Retry SIGINT if it is not received the first time.Florent Xicluna2010-03-051-2/+13
* #2777: Enable test_send_signal, test_kill and test_terminate on all platforms.Florent Xicluna2010-03-041-6/+20
* Cleanup.Florent Xicluna2010-03-041-5/+5
* Fix the new test on windows (skip it, its posix only)Gregory P. Smith2010-03-011-0/+1
* Issue #1068268: The subprocess module now handles EINTR in internalGregory P. Smith2010-03-011-1/+21
* Fix an oversight in r78508: p.wait() should be compared to 0Florent Xicluna2010-02-271-4/+4
* Clean test_subprocess: use assertRaises, skipIf, skipUnless helpers and a cus...Florent Xicluna2010-02-271-318/+299
* #7712: add a temp_cwd context manager to test_support and use it in regrtest ...Ezio Melotti2010-02-101-3/+16
* use assert[Not]In where appropriateEzio Melotti2010-01-231-3/+3
* #6416: Fix compilation of the select module on Windows, as well as test_subpr...Amaury Forgeot d'Arc2009-07-091-1/+1
* Use select.poll() in subprocess, when available, rather than select() so thatGregory P. Smith2009-07-041-1/+17
* convert usage of fail* to assert*Benjamin Peterson2009-06-301-7/+7
* #5179: don't leak PIPE fds when child execution fails.Georg Brandl2009-02-141-0/+16
* rename the new check_call_output to check_output. its less ugly.Gregory P. Smith2008-12-051-11/+11
* Adds a subprocess.check_call_output() function to return the output from aGregory P. Smith2008-12-041-0/+34
* Fixes issue2791: subprocess.Popen.communicate leaked a file descripton untilGregory P. Smith2008-05-261-5/+19
* fix issue2381: test_subprocess fails if your sys.executable is on aGregory P. Smith2008-05-171-2/+2
* Disabled some unit tests for the upcoming release. See #2777Christian Heimes2008-05-061-6/+6
* Added kill, terminate and send_signal to subprocess.PopenChristian Heimes2008-04-191-0/+46
* Fix issue 1300: Quote command line arguments that contain a '|' character inGregory P. Smith2008-01-191-0/+2
* fix comment typos, use not arg instead of arg == "", add test coverageGregory P. Smith2008-01-191-0/+2
* Patch #1672 by Joseph Armbruster. Use tempdir() to get a temporary directory.Guido van Rossum2007-12-201-1/+1
* Applied patch 1669481, slightly modified: Support close_fds on Win32Peter Astrand2007-05-261-0/+8
* Fix for bug #1634343: allow specifying empty arguments on WindowsPeter Astrand2007-01-131-0/+2
* Fixed subprocess bug #1531862 again, after removing testsGustavo Niemeyer2006-09-071-0/+6
* Revert 51758 because it broke all the buildbotsNeal Norwitz2006-09-061-42/+0
* Fixing #1531862: Do not close standard file descriptors in theGustavo Niemeyer2006-09-061-0/+42
* Whitespace normalization.Tim Peters2006-08-021-1/+1
* [Patch #1520905] Attempt to suppress core file created by test_subprocess.py.Andrew M. Kuchling2006-08-011-2/+28
* Bug #1223937: CalledProcessError.errno -> CalledProcessError.returncode.Peter Astrand2006-07-141-1/+1
* Make it possible to run test_subprocess.py with Python 2.2, which lacks test_...Peter Astrand2006-07-101-3/+6
* Whitespace normalization.Tim Peters2006-06-301-4/+4
* Add new utility function, reap_children(), to test_support. This shouldNeal Norwitz2006-06-291-0/+11
* Make it possible to run test_subprocess.py on Python 2.2, which lacks test_su...Peter Astrand2006-06-221-1/+2
* Try to fix breakage caused by patch #1479181, r45850Neal Norwitz2006-05-021-2/+2
* SF #1479181: split open() and file() from being aliases for each other.Neal Norwitz2006-05-021-2/+2
* Whitespace normalization.Tim Peters2005-03-281-1/+1
* Tweak test_communicate_stderr so that it works when run under a pydebug build.Brett Cannon2005-03-051-1/+3
* Only run extensive subprocess tests if -usubprocess to regrtest is specified....Peter Astrand2005-03-031-3/+4
* Added three more testcases: Using communicate with only one ofPeter Astrand2005-03-031-0/+23
* New subprocess utility function: check_call. Closes #1071764.Peter Astrand2005-01-011-0/+16
* Raise TypeError if bufsize argument is not an integer. Patch 1071755, slightl...Peter Astrand2004-11-301-0/+11
* Remove tempfile after use in test_call_string.Peter Astrand2004-11-171-1/+2
* Use os.chdir/os.getcwd instead of os.path.realpath, to support Tru64Peter Astrand2004-11-121-1/+6
* Removed test_close_fds, because it's too unreliable. We simply cannotPeter Astrand2004-10-211-10/+0
* remove_stderr_debug_decorations(): Always try the substitution. ElseTim Peters2004-10-141-3/+1