From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Sun, 8 May 2022 15:30:43 +0000 (-0700) Subject: [3.10] gh-92417: `asyncio` docs: `asyncio.run()` is available on all supported Python... X-Git-Tag: v3.10.5~78 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e363034752dbc02cb8b21762ed70cc1c1e3e7066;p=thirdparty%2FPython%2Fcpython.git [3.10] gh-92417: `asyncio` docs: `asyncio.run()` is available on all supported Python versions (GH-92419) (GH-92463) (cherry picked from commit f4e317b304c7f86e48885b4b74c7a8826648922c) Co-authored-by: Alex Waygood Automerge-Triggered-By: GH:serhiy-storchaka --- diff --git a/Doc/library/asyncio.rst b/Doc/library/asyncio.rst index 94a853259d34..a6429394389b 100644 --- a/Doc/library/asyncio.rst +++ b/Doc/library/asyncio.rst @@ -17,7 +17,6 @@ await asyncio.sleep(1) print('... World!') - # Python 3.7+ asyncio.run(main()) asyncio is a library to write **concurrent** code using