summaryrefslogtreecommitdiffstats
path: root/Doc/library/asyncio-eventloop.rst
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-01-27 22:01:41 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2014-01-27 22:01:41 (GMT)
commiteedf1c1ebf88a7b4762b449fee30fe3f6f518ebc (patch)
tree0163ffeda0e9368f9af1bd46572d06ac0ed50f61 /Doc/library/asyncio-eventloop.rst
parentf5d2f22475a340d65bf631f7bb0e5219a16ecae0 (diff)
downloadcpython-eedf1c1ebf88a7b4762b449fee30fe3f6f518ebc.zip
cpython-eedf1c1ebf88a7b4762b449fee30fe3f6f518ebc.tar.gz
cpython-eedf1c1ebf88a7b4762b449fee30fe3f6f518ebc.tar.bz2
asyncio doc: subprocess_exec/subprocess_shell are not available on Windows
Diffstat (limited to 'Doc/library/asyncio-eventloop.rst')
-rw-r--r--Doc/library/asyncio-eventloop.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/library/asyncio-eventloop.rst b/Doc/library/asyncio-eventloop.rst
index 75df87b..f589b20 100644
--- a/Doc/library/asyncio-eventloop.rst
+++ b/Doc/library/asyncio-eventloop.rst
@@ -294,6 +294,8 @@ Run subprocesses asynchronously using the :mod:`subprocess` module.
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 @@ Run subprocesses asynchronously using the :mod:`subprocess` module.
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.