Unverified Kaydet (Commit) aeb5d73b authored tarafından Miss Islington (bot)'s avatar Miss Islington (bot) Kaydeden (comit) GitHub

Fix a typo in asyncio docs (GH-5721)

(cherry picked from commit 17ab8f0e)
Co-authored-by: 's avatarAndrew Svetlov <andrew.svetlov@gmail.com>
üst afb5e558
...@@ -1043,7 +1043,7 @@ Server ...@@ -1043,7 +1043,7 @@ Server
async def main(host, port): async def main(host, port):
srv = await asyncio.start_server( srv = await asyncio.start_server(
client_connected, host, port) client_connected, host, port)
await loop.serve_forever() await srv.serve_forever()
asyncio.run(main('127.0.0.1', 0)) asyncio.run(main('127.0.0.1', 0))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment