summaryrefslogtreecommitdiff
path: root/Lib/subprocess.py
Commit message (Expand)AuthorAgeFilesLines
* Fixes Issue #26373: subprocess.Popen.communicate now correctly ignoresGregory P. Smith2016-06-041-5/+18
* Issue #22274: Redirect stderr=STDOUT when stdout not redirected, by Akira LiMartin Panter2016-05-131-1/+4
* * Re-fix issue #19284: Don't generate the no-op -R command lineGregory P. Smith2015-12-131-3/+0
|\
| * Re-fix issue #19284: Don't generate the no-op -R command lineGregory P. Smith2015-12-131-3/+0
* | Fix issue #6973: When we know a subprocess.Popen process has died, doGregory P. Smith2015-11-151-7/+12
|\ \ | |/
| * Fix issue #6973: When we know a subprocess.Popen process has died, doGregory P. Smith2015-11-151-7/+12
* | Add a subprocess.run() function than returns a CalledProcess instance for aGregory P. Smith2015-04-141-16/+108
* | issue10838: Rename the subprocess.mswindows internal global to _mswindows.Gregory P. Smith2015-04-071-6/+6
* | Addresses Issue #10838: The subprocess now module includesGregory P. Smith2015-04-071-1/+4
* | Issue #21619: Popen objects no longer leave a zombie after exit in the withSerhiy Storchaka2015-02-281-4/+6
|\ \ | |/
| * Issue #21619: Popen objects no longer leave a zombie after exit in the withSerhiy Storchaka2015-02-281-4/+6
* | Issue #23285: PEP 475 -- Retry system calls failing with EINTR.Charles-Fran?ois Natali2015-02-071-13/+5
* | Closes #23234: Refactor subprocessVictor Stinner2015-01-141-34/+24
* | Issue #21332: Ensure that ``bufsize=1`` in subprocess.Popen() selects line bu...Antoine Pitrou2014-09-211-30/+29
|\ \ | |/ |/|
| * Issue #22043: time.monotonic() is now always availableVictor Stinner2014-09-021-4/+1
| * Issue #22033: Reprs of most Python implemened classes now contain actualSerhiy Storchaka2014-07-251-1/+1
| * Remove the obsolete MAXFD constant and Popen._close_fds() method.Gregory P. Smith2014-06-011-14/+0
| * subprocess's Popen.wait() is now thread safe so that multiple threadsGregory P. Smith2014-04-231-10/+40
| |\
| * | #10481: describe universal_newlines' effect on communicate()/check_output() o...Andrew Kuchling2014-04-141-11/+27
* | | Issue #21332: Ensure that ``bufsize=1`` in subprocess.Popen() selects line bu...Antoine Pitrou2014-09-211-1/+2
| |/ |/|
* | subprocess's Popen.wait() is now thread safe so that multiple threadsGregory P. Smith2014-04-231-10/+40
|/
* Issue #20976: pyflakes: Remove unused importsVictor Stinner2014-03-201-2/+0
* merge 3.3 (#19060)Benjamin Peterson2014-03-121-239/+131
|\
| * (Merge 3.3) Issue #19612: On Windows, subprocess.Popen.communicate() nowVictor Stinner2014-02-181-239/+131
| |\
| | * issue12085: Use more Pythonic way to check _child_created.Serhiy Storchaka2014-02-101-7/+6
| | |\
| | * \ Fixes issue #19929: Call os.read with 32768 within subprocess.PopenGregory P. Smith2013-12-081-1/+1
| | |\ \
| | * \ \ Fixes issue #19506: Use a memoryview to avoid a data copy when piping dataGregory P. Smith2013-12-071-2/+5
| | |\ \ \
| | * | | | Fixes issue #15798: subprocess.Popen() no longer fails if fileGregory P. Smith2013-12-011-0/+7
| | * | | | Undo supposed fix for Issue #15798 until I understand why this isGregory P. Smith2013-12-011-235/+120
| | |\ \ \ \
| | | * \ \ \ Fixes Issue #15798 - subprocess.Popen() no longer fails if fileGregory P. Smith2013-11-301-235/+120
| | | |\ \ \ \
| | | | * \ \ \ Remove outdated commentTim Golden2013-11-111-1/+0
| | | | |\ \ \ \
| | | | * | | | | Issue #18923: Update subprocess to use the new selectors module.Charles-Fran?ois Natali2013-11-081-169/+69
| | | | * | | | | Issue #10197 Tweak docs for subprocess.getstatusoutput and align the document...Tim Golden2013-11-051-11/+15
| | | | * | | | | Issue #10197 Rework subprocess.get[status]output to use subprocess functional...Tim Golden2013-11-031-57/+38
| | | | |\ \ \ \ \
| | | | | * | | | | Close #19284: Handle -R properly in flag helperNick Coghlan2013-10-181-0/+2
| | | | | * | | | | Issue #18571: Implementation of the PEP 446: file descriptors and file handlesVictor Stinner2013-08-281-5/+4
| | | | | * | | | | #18705: merge with 3.3.Ezio Melotti2013-08-171-1/+1
| | | | | |\ \ \ \ \
| | | | | * \ \ \ \ \ (3.3->default) Cleanup of documentation change from #17860Ronald Oussoren2013-07-071-52/+32
| | | | | |\ \ \ \ \ \
| | | | | | * | | | | | Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a)Brett Cannon2013-07-041-1/+1
| | | | | | * | | | | | Prevent a possible double close of parent pipe fds when the subprocessGregory P. Smith2013-06-151-53/+33
| | | | | | |\ \ \ \ \ \
| | | | | | | * | | | | | Issue #18200: Update the stdlib (except tests) to useBrett Cannon2013-06-131-1/+1
| | | | | | | * | | | | | Issue #16624: `subprocess.check_output` now accepts an `input` argument,Serhiy Storchaka2013-04-221-1/+21
| | | | | | | * | | | | | Fixes issue #17488: Change the subprocess.Popen bufsize parameter default valueGregory P. Smith2013-03-231-9/+9
| | | | | | | |\ \ \ \ \ \
| | | | | | | * \ \ \ \ \ \ mergeGregory P. Smith2013-03-201-4/+3
| | | | | | | |\ \ \ \ \ \ \
| | | | | | | * \ \ \ \ \ \ \ Use a larger amount of data for tests such as the interrupted_writeGregory P. Smith2013-03-191-51/+11
| | | | | | | |\ \ \ \ \ \ \ \
| | | | | | | | * | | | | | | | Replace IOError with OSError (#16715)Andrew Svetlov2012-12-251-2/+2
| | | | | | | | * | | | | | | | Keep ref to ECHILD in local scope (#16650)Andrew Svetlov2012-12-241-2/+2
| | | | | | | | |\ \ \ \ \ \ \ \
| | | | | | | | * | | | | | | | | Fix #14470. Remove w9xpopen per PEP 11.Brian Curtin2012-12-231-32/+0
| | | | | | | | * | | | | | | | | Issue #16706: get rid of os.errorAndrew Svetlov2012-12-181-2/+2
| | | | | | | | * | | | | | | | | Get rig of EnvironmentError (#16705)Andrew Svetlov2012-12-171-2/+2