]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Remove loop from docstring for asyncio.streams.open_connection (#108528)
authorTom Gillespie <tgbugs@gmail.com>
Wed, 27 Sep 2023 03:34:15 +0000 (23:34 -0400)
committerGitHub <noreply@github.com>
Wed, 27 Sep 2023 03:34:15 +0000 (20:34 -0700)
Lib/asyncio/streams.py

index b7ad365709b19e5939d093664622bae88a67456b..bc84e53b8443cf48316cf15ec1d65bd71c46493e 100644 (file)
@@ -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.