diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-02-03 19:36:17 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-02-03 19:36:17 (GMT) |
commit | b74cf63a0895ff6bd1af82edf623a75e8ea787ee (patch) | |
tree | a99ddc215c543a86c6f96d12e34351af3f225065 | |
parent | 512259b2441e6324064ef54471c7ad8c7475ee7e (diff) | |
parent | 233eac42d44d28ff921185fe06fa01bff3e46315 (diff) | |
download | cpython-b74cf63a0895ff6bd1af82edf623a75e8ea787ee.zip cpython-b74cf63a0895ff6bd1af82edf623a75e8ea787ee.tar.gz cpython-b74cf63a0895ff6bd1af82edf623a75e8ea787ee.tar.bz2 |
Merge heads
-rw-r--r-- | Doc/library/asyncio-subprocess.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/asyncio-subprocess.rst b/Doc/library/asyncio-subprocess.rst index 04610aa..4c399c6 100644 --- a/Doc/library/asyncio-subprocess.rst +++ b/Doc/library/asyncio-subprocess.rst @@ -8,7 +8,7 @@ Create a subproces .. function:: create_subprocess_shell(cmd, stdin=None, stdout=None, stderr=None, loop=None, limit=None, \*\*kwds) - Run the shell command *cmd* (:class:`str`)`. Return a :class:`Process` + Run the shell command *cmd* given as a string. Return a :class:`Process` instance. This function returns a :ref:`coroutine object <coroutine>`. |