Skip to content

Commit 0a69de7

Browse files
[3.11] Remove loop from docstring for asyncio.streams.open_connection (GH-108528) (#109942)
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 8ed9bda commit 0a69de7

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Lib/asyncio/streams.py

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

0 commit comments

Comments
 (0)