| Commit message (Expand) | Author | Age | Files | Lines |
* | #6416: Fix compilation of the select module on Windows, as well as test_subpr... | Amaury Forgeot d'Arc | 2009-07-09 | 1 | -1/+1 |
|
|
* | Use select.poll() in subprocess, when available, rather than select() so that | Gregory P. Smith | 2009-07-04 | 1 | -1/+17 |
|
|
* | convert usage of fail* to assert* | Benjamin Peterson | 2009-06-30 | 1 | -7/+7 |
|
|
* | #5179: don't leak PIPE fds when child execution fails. | Georg Brandl | 2009-02-14 | 1 | -0/+16 |
|
|
* | rename the new check_call_output to check_output. its less ugly. | Gregory P. Smith | 2008-12-05 | 1 | -11/+11 |
|
|
* | Adds a subprocess.check_call_output() function to return the output from a | Gregory P. Smith | 2008-12-04 | 1 | -0/+34 |
|
|
* | Fixes issue2791: subprocess.Popen.communicate leaked a file descripton until | Gregory P. Smith | 2008-05-26 | 1 | -5/+19 |
|
|
* | fix issue2381: test_subprocess fails if your sys.executable is on a | Gregory P. Smith | 2008-05-17 | 1 | -2/+2 |
|
|
* | Disabled some unit tests for the upcoming release. See #2777 | Christian Heimes | 2008-05-06 | 1 | -6/+6 |
|
|
* | Added kill, terminate and send_signal to subprocess.Popen | Christian Heimes | 2008-04-19 | 1 | -0/+46 |
|
|
* | Fix issue 1300: Quote command line arguments that contain a '|' character in | Gregory P. Smith | 2008-01-19 | 1 | -0/+2 |
|
|
* | fix comment typos, use not arg instead of arg == "", add test coverage | Gregory P. Smith | 2008-01-19 | 1 | -0/+2 |
|
|
* | Patch #1672 by Joseph Armbruster. Use tempdir() to get a temporary directory. | Guido van Rossum | 2007-12-20 | 1 | -1/+1 |
|
|
* | Applied patch 1669481, slightly modified: Support close_fds on Win32 | Peter Astrand | 2007-05-26 | 1 | -0/+8 |
|
|
* | Fix for bug #1634343: allow specifying empty arguments on Windows | Peter Astrand | 2007-01-13 | 1 | -0/+2 |
|
|
* | Fixed subprocess bug #1531862 again, after removing tests | Gustavo Niemeyer | 2006-09-07 | 1 | -0/+6 |
|
|
* | Revert 51758 because it broke all the buildbots | Neal Norwitz | 2006-09-06 | 1 | -42/+0 |
|
|
* | Fixing #1531862: Do not close standard file descriptors in the | Gustavo Niemeyer | 2006-09-06 | 1 | -0/+42 |
|
|
* | Whitespace normalization. | Tim Peters | 2006-08-02 | 1 | -1/+1 |
|
|
* | [Patch #1520905] Attempt to suppress core file created by test_subprocess.py. | Andrew M. Kuchling | 2006-08-01 | 1 | -2/+28 |
|
|
* | Bug #1223937: CalledProcessError.errno -> CalledProcessError.returncode. | Peter Astrand | 2006-07-14 | 1 | -1/+1 |
|
|
* | Make it possible to run test_subprocess.py with Python 2.2, which lacks test_... | Peter Astrand | 2006-07-10 | 1 | -3/+6 |
|
|
* | Whitespace normalization. | Tim Peters | 2006-06-30 | 1 | -4/+4 |
|
|
* | Add new utility function, reap_children(), to test_support. This should | Neal Norwitz | 2006-06-29 | 1 | -0/+11 |
|
|
* | Make it possible to run test_subprocess.py on Python 2.2, which lacks test_su... | Peter Astrand | 2006-06-22 | 1 | -1/+2 |
|
|
* | Try to fix breakage caused by patch #1479181, r45850 | Neal Norwitz | 2006-05-02 | 1 | -2/+2 |
|
|
* | SF #1479181: split open() and file() from being aliases for each other. | Neal Norwitz | 2006-05-02 | 1 | -2/+2 |
|
|
* | Whitespace normalization. | Tim Peters | 2005-03-28 | 1 | -1/+1 |
|
|
* | Tweak test_communicate_stderr so that it works when run under a pydebug build. | Brett Cannon | 2005-03-05 | 1 | -1/+3 |
|
|
* | Only run extensive subprocess tests if -usubprocess to regrtest is specified.... | Peter Astrand | 2005-03-03 | 1 | -3/+4 |
|
|
* | Added three more testcases: Using communicate with only one of | Peter Astrand | 2005-03-03 | 1 | -0/+23 |
|
|
* | New subprocess utility function: check_call. Closes #1071764. | Peter Astrand | 2005-01-01 | 1 | -0/+16 |
|
|
* | Raise TypeError if bufsize argument is not an integer. Patch 1071755, slightl... | Peter Astrand | 2004-11-30 | 1 | -0/+11 |
|
|
* | Remove tempfile after use in test_call_string. | Peter Astrand | 2004-11-17 | 1 | -1/+2 |
|
|
* | Use os.chdir/os.getcwd instead of os.path.realpath, to support Tru64 | Peter Astrand | 2004-11-12 | 1 | -1/+6 |
|
|
* | Removed test_close_fds, because it's too unreliable. We simply cannot | Peter Astrand | 2004-10-21 | 1 | -10/+0 |
|
|
* | remove_stderr_debug_decorations(): Always try the substitution. Else | Tim Peters | 2004-10-14 | 1 | -3/+1 |
|
|
* | Don't spend quite as much time looking for leaks on Windows, where | Fredrik Lundh | 2004-10-13 | 1 | -2/+4 |
|
|
* | normalize case when comparing directory names (problem reported by | Fredrik Lundh | 2004-10-13 | 1 | -1/+2 |
|
|
* | New helper remove_stderr_debug_decorations(). This test passes in a | Tim Peters | 2004-10-13 | 1 | -7/+24 |
|
|
* | Kill several problems at once: test_poll() failed sometimes for me. | Tim Peters | 2004-10-13 | 1 | -6/+11 |
|
|
* | test_stdout_none(): Don't print "banana" to the screen in the middle | Tim Peters | 2004-10-13 | 1 | -2/+5 |
|
|
* | Windows test_creationflags() test: print msg to stderr informing the | Tim Peters | 2004-10-13 | 1 | -1/+2 |
|
|
* | XXX about extreme expense of test_no_leaking() on Windows. I'm not sure | Tim Peters | 2004-10-13 | 1 | -0/+1 |
|
|
* | Experience with Zope2's tests showed it's a Bad Idea to make unittest | Tim Peters | 2004-10-12 | 1 | -45/+35 |
|
|
* | Wrap long lines. | Tim Peters | 2004-10-12 | 1 | -43/+67 |
|
|
* | Whitespace normalization. | Tim Peters | 2004-10-12 | 1 | -17/+16 |
|
|
* | Added Peter Astrand's subprocess module. | Fredrik Lundh | 2004-10-12 | 1 | -0/+514 |
|
|