| Commit message (Expand) | Author | Age | Files | Lines |
* | #7381: consistency update, and backport avoiding ``None >= 0`` check from py3k. | Georg Brandl | 2009-12-28 | 1 | -4/+6 |
|
|
* | #7381: subprocess documentation and library docstring consistency fixes. | Georg Brandl | 2009-12-20 | 1 | -9/+9 |
|
|
* | Issue 7294: Fixed URL in a comment. | Eric Smith | 2009-11-09 | 1 | -1/+3 |
|
|
* | #5329: fix os.popen* regression from 2.5: don't execute commands as a sequence | Philip Jenvey | 2009-09-29 | 1 | -15/+41 |
|
|
* | Revert r74028. | Georg Brandl | 2009-07-16 | 1 | -2/+2 |
|
|
* | #6482: simplify "except: raise" to "finally:". | Georg Brandl | 2009-07-16 | 1 | -2/+2 |
|
|
* | #6447: typo in subprocess docstring | Amaury Forgeot d'Arc | 2009-07-10 | 1 | -2/+2 |
|
|
* | #6416: Fix compilation of the select module on Windows, as well as test_subpr... | Amaury Forgeot d'Arc | 2009-07-09 | 1 | -5/+6 |
|
|
* | Use select.poll() in subprocess, when available, rather than select() so that | Gregory P. Smith | 2009-07-04 | 1 | -35/+96 |
|
|
* | Issue #6274. Fixed a potential FD leak in subprocess.py. | Facundo Batista | 2009-06-19 | 1 | -82/+90 |
|
|
* | #6189: The subprocess.py module should be kept compatible with python 2.2 | Amaury Forgeot d'Arc | 2009-06-18 | 1 | -3/+12 |
|
|
* | Issue #5179: Fixed subprocess handle leak on failure on windows. | Hirokazu Yamamoto | 2009-03-03 | 1 | -32/+15 |
|
|
* | Issue #5341: Fix a variety of spelling errors. | Mark Dickinson | 2009-02-21 | 1 | -2/+2 |
|
|
* | #5179: don't leak PIPE fds when child execution fails. | Georg Brandl | 2009-02-14 | 1 | -0/+3 |
|
|
* | 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 | -12/+60 |
|
|
* | Remove warnings generated for the suprocess module when run under -3. Required | Brett Cannon | 2008-08-08 | 1 | -7/+8 |
|
|
* | - Issue #1857: subprocess.Popen.poll gained an additional _deadstate keyword | Gregory P. Smith | 2008-08-04 | 1 | -4/+8 |
|
|
* | - Issue #2113: Fix error in subprocess.Popen if the select system call is | Gregory P. Smith | 2008-07-06 | 1 | -1/+6 |
|
|
* | Fixes issue2791: subprocess.Popen.communicate leaked a file descripton until | Gregory P. Smith | 2008-05-26 | 1 | -0/+2 |
|
|
* | Added kill, terminate and send_signal to subprocess.Popen | Christian Heimes | 2008-04-19 | 1 | -0/+32 |
|
|
* | Fix issue 1300: Quote command line arguments that contain a '|' character in | Gregory P. Smith | 2008-01-19 | 1 | -3/+3 |
|
|
* | Undo an unnecessary else: and indentation that r60104 added. | Gregory P. Smith | 2008-01-19 | 1 | -58/+57 |
|
|
* | Fixes issue1336 - a race condition could occur when forking if the gc | Gregory P. Smith | 2008-01-19 | 1 | -58/+71 |
|
|
* | fix comment typos, use not arg instead of arg == "", add test coverage | Gregory P. Smith | 2008-01-19 | 1 | -3/+3 |
|
|
* | #1663329: add os.closerange() to close a range of fds, | Georg Brandl | 2008-01-19 | 1 | -7/+2 |
|
|
* | Applied patch 1669481, slightly modified: Support close_fds on Win32 | Peter Astrand | 2007-05-26 | 1 | -5/+4 |
|
|
* | Remove trailing whitespace in docstring | Neal Norwitz | 2007-05-11 | 1 | -2/+0 |
|
|
* | Fix typo in docstring (the module is popen2, not 3). | Neal Norwitz | 2007-05-11 | 1 | -1/+1 |
|
|
* | Bug #1704790: bind name "sys" locally in __del__ method so that it is | Georg Brandl | 2007-04-21 | 1 | -1/+1 |
|
|
* | Whitespace normalization. | Tim Peters | 2007-03-12 | 1 | -1/+1 |
|
|
* | Applied patch 1124861.3.patch to solve bug #1124861: Automatically create pip... | Peter Astrand | 2007-02-06 | 1 | -3/+25 |
|
|
* | We had several if statements checking the value of a fd. This is unsafe, sinc... | Peter Astrand | 2007-02-02 | 1 | -15/+15 |
|
|
* | Whitespace normalization. | Tim Peters | 2007-01-30 | 1 | -1/+1 |
|
|
* | Fix for bug #1634343: allow specifying empty arguments on Windows | Peter Astrand | 2007-01-13 | 1 | -1/+1 |
|
|
* | Avoid O(N**2) bottleneck in _communicate_(). Fixes #1598181. | Peter Astrand | 2007-01-07 | 1 | -3/+4 |
|
|
* | Re-implemented fix for #1531862 once again, in a way that works with Python 2... | Peter Astrand | 2007-01-07 | 1 | -2/+6 |
|
|
* | SF bug #1623890, fix argument name in docstring | Neal Norwitz | 2006-12-29 | 1 | -1/+1 |
|
|
* | Bug #1357915: allow all sequence types for shell arguments in | Georg Brandl | 2006-10-29 | 1 | -0/+2 |
|
|
* | Fixed subprocess bug #1531862 again, after removing tests | Gustavo Niemeyer | 2006-09-07 | 1 | -8/+4 |
|
|
* | Revert 51758 because it broke all the buildbots | Neal Norwitz | 2006-09-06 | 1 | -4/+8 |
|
|
* | Fixing #1531862: Do not close standard file descriptors in the | Gustavo Niemeyer | 2006-09-06 | 1 | -8/+4 |
|
|
* | Guard for _active being None in __del__ method. | Georg Brandl | 2006-07-20 | 1 | -1/+1 |
|
|
* | Whitespace normalization. | Tim Peters | 2006-07-18 | 1 | -1/+1 |
|
|
* | Bug #1223937: CalledProcessError.errno -> CalledProcessError.returncode. | Peter Astrand | 2006-07-14 | 1 | -8/+13 |
|
|
* | Fix doco. Backport candidate. | Neal Norwitz | 2006-07-10 | 1 | -1/+1 |
|
|
* | Applied patch #1506758: Prevent MemoryErrors with large MAXFD. | Peter Astrand | 2006-06-22 | 1 | -1/+1 |
|
|
* | Bug #1500293: fix memory leaks in _subprocess module. | Georg Brandl | 2006-06-04 | 1 | -5/+5 |
|
|
* | Try to fix breakage caused by patch #1479181, r45850 | Neal Norwitz | 2006-05-02 | 1 | -2/+2 |
|
|
* | Patch #1467770: Add Popen objects to _active only in __del__. | Martin v. Löwis | 2006-04-10 | 1 | -10/+26 |
|
|