summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio/subprocess.py
Commit message (Expand)AuthorAgeFilesLines
* gh-109709: Fix asyncio test_stdin_broken_pipe() (#109710)Victor Stinner2023-09-221-6/+8
* gh-104340: Suppress warning about unawaited exception for closed pipe stdin (...Guido van Rossum2023-05-171-0/+3
* gh-83925: Make asyncio.subprocess communicate similar to non-asyncio (#18650)Marek Marczykowski-Górecki2023-04-281-5/+6
* bpo-42392: Remove loop parameter from asyncio.tasks and asyncio.subprocess (G...Yurii Karabas2020-11-281-24/+6
* bpo-38242: Revert "bpo-36889: Merge asyncio streams (GH-13251)" (#16482)Yury Selivanov2019-09-301-43/+21
* bpo-36373: Deprecate explicit loop in task and subprocess API (GH-16033)Andrew Svetlov2019-09-121-0/+13
* bpo-38066: Hide internal Stream methods (GH-15762)Andrew Svetlov2019-09-101-5/+5
* Fix typos in comments, docs and test names (#15018)Min ho Kim2019-07-301-1/+1
* bpo-36889: Merge asyncio streams (GH-13251)Andrew Svetlov2019-05-271-12/+23
* bpo-36801: Fix waiting in StreamWriter.drain for closing SSL transport (GH-13...Andrew Svetlov2019-05-071-0/+9
* Forbid creating of stream objects outside of asyncio (#13101)Andrew Svetlov2019-05-071-10/+22
* bpo-35065: Remove `StreamReaderProtocol._untrack_reader` (#10212)Vincent Michel2018-11-081-5/+0
* bpo-34638: Store a weak reference to stream reader to break strong references...Andrew Svetlov2018-09-121-0/+5
* bpo-32262: Fix codestyle; use f-strings formatting where necessary. (#4775)Yury Selivanov2017-12-101-9/+9
* bpo-32193: Convert asyncio to async/await usage (#4753)Andrew Svetlov2017-12-081-36/+28
* asyncio: Fix trailing whitespace/code styleYury Selivanov2017-03-031-2/+2
* bpo-29704: Fix asyncio.SubprocessStreamProtocol closing (#405)Seth M. Larson2017-03-031-2/+15
* Issue #26848: Fix asyncio/subprocess.communicate() to handle empty input.Yury Selivanov2016-05-131-1/+1
* asyncio: sync with githubVictor Stinner2015-07-251-2/+0
* Issue #23347, asyncio: Make BaseSubprocessTransport.wait() privateVictor Stinner2015-01-291-1/+1
* asyncio: sync with TulipVictor Stinner2015-01-291-37/+3
* Issue #23242: asyncio.SubprocessStreamProtocol now closes the subprocessVictor Stinner2015-01-151-1/+4
* Python issue #23173: sync with TulipVictor Stinner2015-01-141-3/+13
* Issue #23140, asyncio: Fix cancellation of Process.wait(). Check the state ofVictor Stinner2015-01-061-1/+2
* Closes #22685, asyncio: Set the transport of stdout and stderr StreamReaderVictor Stinner2014-11-251-5/+12
* asyncio, tulip issue 190: Process.communicate() now ignoresVictor Stinner2014-07-171-5/+7
* asyncio, tulip issue 190: Process.communicate() must ignore BrokenPipeErrorVictor Stinner2014-07-171-1/+5
* asyncio: sync with TulipVictor Stinner2014-07-141-0/+26
* asyncio: sync with Tulip, add a new asyncio.coroutines moduleVictor Stinner2014-06-281-7/+8
* asyncio.subprocess: Fix a race condition in communicate()Victor Stinner2014-02-201-2/+1
* asyncio: pep8-ify the code.Yury Selivanov2014-02-191-2/+3
* asyncio, Tulip issue 130: Add more checks on subprocess_exec/subprocess_shellVictor Stinner2014-02-111-2/+3
* asyncio: Remove Process.subprocess attribute; it's too easy to get inconsistentVictor Stinner2014-02-091-4/+0
* asyncio.subprocess: Replace Process.get_subprocess() method with aVictor Stinner2014-02-031-1/+2
* Issue #20400: Merge Tulip into Python: add the new asyncio.subprocess moduleVictor Stinner2014-02-011-0/+197