summaryrefslogtreecommitdiffstats
path: root/Doc/library/asyncio-protocol.rst
diff options
context:
space:
mode:
authorYury Selivanov <yury@edgedb.com>2019-09-30 04:59:55 (GMT)
committerGitHub <noreply@github.com>2019-09-30 04:59:55 (GMT)
commit6758e6e12a71ef5530146161881f88df1fa43382 (patch)
treeda1f89f35e54ddcfffc3706b87bb13f54907f7ea /Doc/library/asyncio-protocol.rst
parent3667e1ee6c90e6d3b6a745cd590ece87118f81ad (diff)
downloadcpython-6758e6e12a71ef5530146161881f88df1fa43382.zip
cpython-6758e6e12a71ef5530146161881f88df1fa43382.tar.gz
cpython-6758e6e12a71ef5530146161881f88df1fa43382.tar.bz2
bpo-38242: Revert "bpo-36889: Merge asyncio streams (GH-13251)" (#16482)
See https://bugs.python.org/issue38242 for more details
Diffstat (limited to 'Doc/library/asyncio-protocol.rst')
-rw-r--r--Doc/library/asyncio-protocol.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/asyncio-protocol.rst b/Doc/library/asyncio-protocol.rst
index cb0317e..67ca121 100644
--- a/Doc/library/asyncio-protocol.rst
+++ b/Doc/library/asyncio-protocol.rst
@@ -809,7 +809,7 @@ data, and waits until the connection is closed::
.. seealso::
The :ref:`TCP echo client using streams <asyncio-tcp-echo-client-streams>`
- example uses the high-level :func:`asyncio.connect` function.
+ example uses the high-level :func:`asyncio.open_connection` function.
.. _asyncio-udp-echo-server-protocol:
@@ -978,7 +978,7 @@ Wait until a socket receives data using the
The :ref:`register an open socket to wait for data using streams
<asyncio_example_create_connection-streams>` example uses high-level streams
- created by the :func:`asyncio.connect` function in a coroutine.
+ created by the :func:`open_connection` function in a coroutine.
.. _asyncio_example_subprocess_proto: