Skip to content

Commit 3ab9fda

Browse files
[3.12] Remove loop from docstring for asyncio.streams.open_connection (GH-108528) (#109941)
Remove loop from docstring for asyncio.streams.open_connection (GH-108528) (cherry picked from commit e721f7a) Co-authored-by: Tom Gillespie <[email protected]>
1 parent 95fd4ed commit 3ab9fda

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Lib/asyncio/streams.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,8 @@ async def start_server(client_connected_cb, host=None, port=None, *,
6666
positional host and port, with various optional keyword arguments
6767
following. The return value is the same as loop.create_server().
6868
69-
Additional optional keyword arguments are loop (to set the event loop
70-
instance to use) and limit (to set the buffer limit passed to the
71-
StreamReader).
69+
Additional optional keyword argument is limit (to set the buffer
70+
limit passed to the StreamReader).
7271
7372
The return value is the same as loop.create_server(), i.e. a
7473
Server object which can be used to stop the service.

0 commit comments

Comments
 (0)