summaryrefslogtreecommitdiff
path: root/asyncio/subprocess.py
Commit message (Expand)AuthorAgeFilesLines
* Restore __all__ of asyncio.subprocessVictor Stinner2014-02-011-2/+1
* Fix typo in __all__ of subprocess.pyVictor Stinner2014-02-011-1/+1
* asyncio.subprocess: export also PIPE, STDOUT and DEVNULL symbolsVictor Stinner2014-02-011-1/+2
* Fix race conditionsVictor Stinner2014-01-301-15/+7
* _read_stream() ensures that fd is 1; pass parameters as keywordsVictor Stinner2014-01-301-6/+11
* Fix SubprocessStreamProtocol constructor: pass loop to FlowControlMixinVictor Stinner2014-01-301-2/+1
* Rename Popen to Process to avoid confusion with subproces.PopenVictor Stinner2014-01-291-3/+3
* Drop call() functionVictor Stinner2014-01-291-26/+0
* Remove Popen.close()Victor Stinner2014-01-291-8/+2
* Convert _noop() and _read_stream() to methodsVictor Stinner2014-01-291-18/+20
* Allow to call get_subprocess() even if the process is deadVictor Stinner2014-01-291-5/+3
* Fix Popen constructor: process is dead if the returncode is already knownVictor Stinner2014-01-291-2/+1
* StreamReader: pass explicitly the loopVictor Stinner2014-01-291-2/+4
* subprocess: pass explicitly the loopVictor Stinner2014-01-291-18/+21
* Export PIPE, STDOUT and DEVNULL constants in asyncio.subprocessVictor Stinner2014-01-291-0/+6
* Rename subprocess_streams.py to subprocess.py to get asyncio.subprocess nameVictor Stinner2014-01-291-0/+224