summaryrefslogtreecommitdiffstats
path: root/Lib/subprocess.py
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 60094-60123 via svnmerge fromChristian Heimes2008-01-201-13/+20
* Removed PyInt_GetMax and sys.maxintChristian Heimes2007-12-041-2/+2
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-061-25/+17
* Patch # 1331 by Christian Heimes.Guido van Rossum2007-10-261-0/+2
* Patch# 1258 by Christian Heimes: kill basestring.Guido van Rossum2007-10-161-2/+2
* Breaking ground for PEP 3137 implementation:Guido van Rossum2007-10-081-3/+7
* More str/bytes goodness.Guido van Rossum2007-08-271-2/+2
* The bufsize argument to Popen() should accept None meaning the default (0).Guido van Rossum2007-06-071-0/+2
* Merged revisions 55631-55794 via svnmerge fromGuido van Rossum2007-06-061-12/+4
* Make test_subprocess work. Fix universal newlines in io.py.Guido van Rossum2007-05-241-13/+13
* Remove native popen() and fdopen(), replacing them with subprocess calls.Guido van Rossum2007-05-241-4/+7
* Make test_subprocess pass. The subprocess module now reads and writesGuido van Rossum2007-05-151-6/+8
* Make test_sys pass.Guido van Rossum2007-05-151-4/+3
* Merged revisions 55225-55227,55229-55269 via svnmerge fromGuido van Rossum2007-05-111-69/+0
* Merged revisions 55007-55179 via svnmerge fromGuido van Rossum2007-05-071-1/+1
* Fix various spots where int/long and str/unicode unificationWalter Dörwald2007-05-031-1/+1
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-2/+2
* Merged revisions 53623-53858 via svnmerge fromThomas Wouters2007-02-231-18/+40
* Fix most trivially-findable print statements.Guido van Rossum2007-02-091-15/+15
* Merged revisions 53538-53622 via svnmerge fromThomas Wouters2007-02-051-1/+1
* Rip out 'long' and 'L'-suffixed integer literals.Guido van Rossum2007-01-151-2/+2
* Merged revisions 53304-53433,53435-53450 via svnmerge fromThomas Wouters2007-01-151-1/+1
* SF patch 1631942 by Collin Winter:Guido van Rossum2007-01-101-2/+2
* Merged revisions 53005-53303 via svnmerge fromThomas Wouters2007-01-091-6/+11
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-8/+6
* Fix another comparison between None and 0.Guido van Rossum2006-08-241-1/+2
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-11/+16
* Merge the rest of the trunk.Thomas Wouters2006-06-081-5/+5
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-2/+2
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-10/+26
* Remove apply()Neal Norwitz2006-03-171-1/+1
* Changed license header: Now simply referring to PSF. This closes bugPeter Astrand2005-09-231-22/+2
* Whitespace normalization.Tim Peters2005-03-281-4/+4
* Corrected bug in list2cmdline wrt backslashes. Fixes #1083306.Peter Astrand2005-03-031-0/+1
* Optimization for communicate(): If only one of stdin/stdout/stderr isPeter Astrand2005-03-031-16/+29
* Made the module compatible with Python 2.2 again.Peter Astrand2005-02-211-2/+5
* Added copyright notice:Peter Astrand2005-02-141-0/+2
* Patch from Leandro Lucarella: replaced:Peter Astrand2005-02-101-29/+29
* Reduce the usage of the types module.Raymond Hettinger2005-02-071-9/+8
* On UNIX, when the execution of the child fails, we must waitpid() toPeter Astrand2005-01-011-0/+1
* New subprocess utility function: check_call. Closes #1071764.Peter Astrand2005-01-011-1/+39
* Changed signature of call function to avoid confusion: this 'args' is not the...Peter Astrand2004-12-051-3/+3
* Raise TypeError if bufsize argument is not an integer. Patch 1071755, slightl...Peter Astrand2004-11-301-0/+3
* Corrected example for replacing shell pipeline. Fixes bug 1073790.Peter Astrand2004-11-301-1/+1
* When using shell=True on Windows, don't display a shell window by default. Fi...Peter Astrand2004-11-071-11/+14
* Fix docstring formatting of escape sequences.Raymond Hettinger2004-10-171-1/+1
* return codes are available on all platforms, not just on UnixFredrik Lundh2004-10-171-4/+3
* Replace dynamic try/except with "if 0", to keep py2exe happy. If youFredrik Lundh2004-10-131-10/+10
* Folded long lines.Tim Peters2004-10-131-23/+42
* Whitespace normalization.Tim Peters2004-10-121-24/+22