[Python-checkins] cpython: asyncio doc: subprocess_exec/subprocess_shell are not available on Windows
victor.stinner
python-checkins at python.org
Mon Jan 27 23:02:13 CET 2014
http://hg.python.org/cpython/rev/868da4813af2
changeset: 88782:868da4813af2
user: Victor Stinner <victor.stinner at gmail.com>
date: Mon Jan 27 23:01:41 2014 +0100
summary:
asyncio doc: subprocess_exec/subprocess_shell are not available on Windows
files:
Doc/library/asyncio-eventloop.rst | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/Doc/library/asyncio-eventloop.rst b/Doc/library/asyncio-eventloop.rst
--- a/Doc/library/asyncio-eventloop.rst
+++ b/Doc/library/asyncio-eventloop.rst
@@ -294,6 +294,8 @@
See the constructor of the :class:`subprocess.Popen` class for parameters.
+ Availability: Unix.
+
.. method:: BaseEventLoop.subprocess_shell(protocol_factory, cmd, \*, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=False, shell=True, bufsize=0, \*\*kwargs)
XXX
@@ -302,6 +304,8 @@
See the constructor of the :class:`subprocess.Popen` class for parameters.
+ Availability: Unix.
+
.. method:: BaseEventLoop.connect_read_pipe(protocol_factory, pipe)
Register read pipe in eventloop.
--
Repository URL: http://hg.python.org/cpython
More information about the Python-checkins
mailing list