]> granicus.if.org Git - python/commitdiff
asyncio doc: subprocess_exec/subprocess_shell are not available on Windows
authorVictor Stinner <victor.stinner@gmail.com>
Mon, 27 Jan 2014 22:01:41 +0000 (23:01 +0100)
committerVictor Stinner <victor.stinner@gmail.com>
Mon, 27 Jan 2014 22:01:41 +0000 (23:01 +0100)
Doc/library/asyncio-eventloop.rst

index 75df87bbdd0885cde3d1ed39276d1bb319e79e26..f589b20d0c34ba9bae4d0320058380a8cb788ee0 100644 (file)
@@ -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.