summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio
diff options
context:
space:
mode:
authorTom Gillespie <tgbugs@gmail.com>2023-09-27 03:34:15 (GMT)
committerGitHub <noreply@github.com>2023-09-27 03:34:15 (GMT)
commite721f7a95186452339dc9e57630d639d549b2521 (patch)
treefc2046feda04c7d0d1a7ca031fc02e7b667340bc /Lib/asyncio
parent3538930d87e6bdd2bfffa3f674a62cc91d359d31 (diff)
downloadcpython-e721f7a95186452339dc9e57630d639d549b2521.zip
cpython-e721f7a95186452339dc9e57630d639d549b2521.tar.gz
cpython-e721f7a95186452339dc9e57630d639d549b2521.tar.bz2
Remove loop from docstring for asyncio.streams.open_connection (#108528)
Diffstat (limited to 'Lib/asyncio')
-rw-r--r--Lib/asyncio/streams.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/Lib/asyncio/streams.py b/Lib/asyncio/streams.py
index b7ad365..bc84e53 100644
--- a/Lib/asyncio/streams.py
+++ b/Lib/asyncio/streams.py
@@ -67,9 +67,8 @@ async def start_server(client_connected_cb, host=None, port=None, *,
positional host and port, with various optional keyword arguments
following. The return value is the same as loop.create_server().
- Additional optional keyword arguments are loop (to set the event loop
- instance to use) and limit (to set the buffer limit passed to the
- StreamReader).
+ Additional optional keyword argument is limit (to set the buffer
+ limit passed to the StreamReader).
The return value is the same as loop.create_server(), i.e. a
Server object which can be used to stop the service.