| Commit message (Expand) | Author | Age | Files | Lines |
* | whitespace fix | Brian Curtin | 2011-04-29 | 1 | -1/+1 |
|
|
* | merge | Brian Curtin | 2011-04-29 | 1 | -2/+9 |
|\ |
|
| * | merge | Brian Curtin | 2011-04-29 | 1 | -2/+9 |
| |\ |
|
| | * | Further fix #7838. CREATE_NEW_CONSOLE was exposed, but none of the | Brian Curtin | 2011-04-29 | 1 | -2/+9 |
|
|
* | | | Merge with 3.2 | Ross Lagerwall | 2011-04-05 | 1 | -11/+34 |
|\ \ \
| |/ / |
|
| * | | Merge with 3.1 | Ross Lagerwall | 2011-04-05 | 1 | -11/+34 |
| |\ \
| | |/ |
|
| | * | Issue #10963: Ensure that subprocess.communicate() never raises EPIPE. | Ross Lagerwall | 2011-04-05 | 1 | -11/+34 |
|
|
* | | | Issue #11757: subprocess ensures that select() and poll() timeout >= 0 | Victor Stinner | 2011-04-05 | 1 | -14/+19 |
|
|
* | | | Issue #11692: Remove unnecessary demo functions in subprocess module. | Ross Lagerwall | 2011-03-27 | 1 | -65/+0 |
|
|
* | | | Fix timeout error message on windows to not be in milliseconds. | Reid Kleckner | 2011-03-21 | 1 | -3/+4 |
|
|
* | | | Fix the Windows timeout code. | Reid Kleckner | 2011-03-20 | 1 | -2/+2 |
|
|
* | | | Issue #11459: A `bufsize` value of 0 in subprocess.Popen() really creates | Antoine Pitrou | 2011-03-19 | 1 | -2/+0 |
|\ \ \
| |/ / |
|
| * | | Issue #11459: A `bufsize` value of 0 in subprocess.Popen() really creates | Antoine Pitrou | 2011-03-19 | 1 | -2/+0 |
| |\ \
| | |/ |
|
| | * | Issue #11459: A `bufsize` value of 0 in subprocess.Popen() really creates | Antoine Pitrou | 2011-03-19 | 1 | -2/+0 |
|
|
* | | | Include the timeout value in TimeoutExpired. | Reid Kleckner | 2011-03-16 | 1 | -22/+32 |
|
|
* | | | Issue #5870: Add subprocess.DEVNULL constant. | Ross Lagerwall | 2011-03-16 | 1 | -1/+22 |
|
|
* | | | #11565: Merge with 3.2. | Ezio Melotti | 2011-03-16 | 1 | -1/+1 |
|\ \ \
| |/ / |
|
| * | | #11565: Merge with 3.1. | Ezio Melotti | 2011-03-16 | 1 | -1/+1 |
| |\ \
| | |/ |
|
| | * | #11565: Fix several typos. Patch by Piotr Kasprzyk. | Ezio Melotti | 2011-03-16 | 1 | -1/+1 |
|
|
| | * | Merged revisions 87695 via svnmerge from | Antoine Pitrou | 2011-01-03 | 1 | -16/+21 |
|
|
| | * | Merged revisions 87233 via svnmerge from | Gregory P. Smith | 2010-12-14 | 1 | -2/+14 |
|
|
| | * | Merged revisions 76923,76926,77009,77082-77083,77085,77087,77121 via svnmerge... | Georg Brandl | 2010-10-06 | 1 | -16/+15 |
|
|
| | * | #2304: fix incorporating Eric Smith's .format suggestion and tested on Ubuntu... | Tim Golden | 2010-08-12 | 1 | -1/+1 |
|
|
| | * | revert r83831, unix test breakage | Benjamin Peterson | 2010-08-08 | 1 | -1/+1 |
|
|
| | * | Issue #2304: Add additional quotes when using cmd shell on Windows. Original ... | Tim Golden | 2010-08-08 | 1 | -1/+1 |
|
|
| | * | Issue #3210: Revert C module changes and apply patch from Hirokazu Yamamoto i... | Tim Golden | 2010-08-08 | 1 | -14/+13 |
|
|
| | * | Merged revisions 82971 via svnmerge from | Stefan Krah | 2010-07-19 | 1 | -0/+2 |
|
|
| | * | Merged revisions 82076 via svnmerge from | Jean-Paul Calderone | 2010-06-18 | 1 | -3/+3 |
|
|
| | * | Merged revisions 81181 via svnmerge from | Victor Stinner | 2010-05-14 | 1 | -3/+3 |
|
|
| | * | Backport r81155. | Brett Cannon | 2010-05-14 | 1 | -16/+33 |
|
|
| | * | Merged revisions 80441 via svnmerge from | Brian Curtin | 2010-04-24 | 1 | -47/+39 |
|
|
| | * | Merged revisions 78524 via svnmerge from | Gregory P. Smith | 2010-03-01 | 1 | -3/+13 |
|
|
| | * | Merged revisions 76170 via svnmerge from | Eric Smith | 2009-11-09 | 1 | -1/+3 |
|
|
| | * | Merged revisions 73917 via svnmerge from | Gregory P. Smith | 2009-08-13 | 1 | -5/+6 |
|
|
| | * | Recorded merge of revisions 74057 via svnmerge from | Georg Brandl | 2009-08-13 | 1 | -2/+2 |
|
|
| | * | Merged revisions 73833,73838,73850-73852,73856-73857 via svnmerge from | Georg Brandl | 2009-08-13 | 1 | -29/+100 |
|
|
* | | | whitespace fix | Gregory P. Smith | 2011-03-14 | 1 | -1/+1 |
|
|
* | | | Add a SubprocessError base class for exceptions in the subprocess module. | Gregory P. Smith | 2011-03-14 | 1 | -4/+9 |
|
|
* | | | Add a 'timeout' argument to subprocess.Popen. | Reid Kleckner | 2011-03-14 | 1 | -87/+237 |
|
|
* | | | Issue #8513: On UNIX, subprocess supports bytes command string. | Victor Stinner | 2011-03-03 | 1 | -1/+1 |
|/ / |
|
* | | In subprocess, wrap pipe fds before launching the child. Hopefully this | Antoine Pitrou | 2011-01-04 | 1 | -7/+21 |
|
|
* | | Un-complicate some code | Antoine Pitrou | 2011-01-03 | 1 | -15/+5 |
|
|
* | | Issue #10806, issue #9905: Fix subprocess pipes when some of the standard | Antoine Pitrou | 2011-01-03 | 1 | -25/+27 |
|
|
* | | Issue #10763: subprocess.communicate() closes stdout and stderr if both are | Victor Stinner | 2010-12-25 | 1 | -0/+1 |
|
|
* | | Issue #1731717: Fixed the problem where subprocess.wait() could cause an | Gregory P. Smith | 2010-12-14 | 1 | -2/+14 |
|
|
* | | Issue #6559: fix the subprocess.Popen pass_fds implementation. Add a unittest. | Gregory P. Smith | 2010-12-14 | 1 | -19/+28 |
|
|
* | | issue7213: Open the pipes used by subprocesses with the FD_CLOEXEC flag from | Gregory P. Smith | 2010-12-13 | 1 | -15/+21 |
|
|
* | | Get rid of the close_fds DeprecationWarning. Changes the default on a per | Gregory P. Smith | 2010-12-13 | 1 | -20/+19 |
|
|
* | | clarify the docs and new warning message. | Gregory P. Smith | 2010-12-04 | 1 | -2/+2 |
|
|
* | | issue6559: Adds a pass_fds parameter to subprocess.Popen that allows the caller | Gregory P. Smith | 2010-12-04 | 1 | -6/+32 |
|
|