From: Victor Stinner <victor.stinner@gmail.com> Date: Mon, 24 Feb 2014 12:19:19 +0000 (+0100) Subject: asyncio doc: fix references in subprocess doc X-Git-Tag: v3.4.1rc1~233^2~216^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=de0e1d30d8a59edc49232ae13b2e2c243442dd32;p=python asyncio doc: fix references in subprocess doc --- diff --git a/Doc/library/asyncio-subprocess.rst b/Doc/library/asyncio-subprocess.rst index 5e6e657e3e..f1f7bd9ea3 100644 --- a/Doc/library/asyncio-subprocess.rst +++ b/Doc/library/asyncio-subprocess.rst @@ -8,14 +8,14 @@ Create a subprocess .. function:: create_subprocess_shell(cmd, stdin=None, stdout=None, stderr=None, loop=None, limit=None, \*\*kwds) - Run the shell command *cmd* given as a string. Return a :class:`Process` + Run the shell command *cmd* given as a string. Return a :class:`~asyncio.subprocess.Process` instance. This function returns a :ref:`coroutine object <coroutine>`. .. function:: create_subprocess_exec(\*args, stdin=None, stdout=None, stderr=None, loop=None, limit=None, \*\*kwds) - Create a subprocess. Return a :class:`Process` instance. + Create a subprocess. Return a :class:`~asyncio.subprocess.Process` instance. This function returns a :ref:`coroutine object <coroutine>`.