From: Tom Gillespie Date: Wed, 27 Sep 2023 03:34:15 +0000 (-0400) Subject: Remove loop from docstring for asyncio.streams.open_connection (#108528) X-Git-Tag: v3.13.0a1~277 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e721f7a95186452339dc9e57630d639d549b2521;p=thirdparty%2FPython%2Fcpython.git Remove loop from docstring for asyncio.streams.open_connection (#108528) --- diff --git a/Lib/asyncio/streams.py b/Lib/asyncio/streams.py index b7ad365709b1..bc84e53b8443 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.