summaryrefslogtreecommitdiffstats
path: root/Doc/library/asyncio-subprocess.rst
diff options
context:
space:
mode:
authorYury Selivanov <yury@magic.io>2018-09-17 19:35:24 (GMT)
committerGitHub <noreply@github.com>2018-09-17 19:35:24 (GMT)
commit394374e30c85f6eacddbbfc7471aab62b54ce021 (patch)
tree8f40e320a7eb6093fcee25d3cd8456a3ccf1bb9f /Doc/library/asyncio-subprocess.rst
parentc6fd1c1c3a65217958b68df3a4991e4f306e9b7d (diff)
downloadcpython-394374e30c85f6eacddbbfc7471aab62b54ce021.zip
cpython-394374e30c85f6eacddbbfc7471aab62b54ce021.tar.gz
cpython-394374e30c85f6eacddbbfc7471aab62b54ce021.tar.bz2
bpo-33649: Add low-level APIs index. (GH-9364)
Diffstat (limited to 'Doc/library/asyncio-subprocess.rst')
-rw-r--r--Doc/library/asyncio-subprocess.rst4
1 files changed, 3 insertions, 1 deletions
diff --git a/Doc/library/asyncio-subprocess.rst b/Doc/library/asyncio-subprocess.rst
index ef8a1cb..57a7a37 100644
--- a/Doc/library/asyncio-subprocess.rst
+++ b/Doc/library/asyncio-subprocess.rst
@@ -318,6 +318,8 @@ An example using the :class:`~asyncio.subprocess.Process` class to
control a subprocess and the :class:`StreamReader` class to read from
the *stdout*.
+.. _asyncio_example_create_subprocess_exec:
+
The subprocess is created by the :func:`create_subprocess_exec`
function::
@@ -349,5 +351,5 @@ function::
print(f"Current date: {date}")
-See also the :ref:`same example <asyncio-subprocess-proto-example>`
+See also the :ref:`same example <asyncio_example_subprocess_proto>`
written using low-level APIs.