[Python-checkins] [3.10] gh-92417: `asyncio` docs: `asyncio.run()` is available on all supported Python versions (GH-92419) (GH-92463)

miss-islington webhook-mailer at python.org
Sun May 8 11:30:50 EDT 2022


https://github.com/python/cpython/commit/e363034752dbc02cb8b21762ed70cc1c1e3e7066
commit: e363034752dbc02cb8b21762ed70cc1c1e3e7066
branch: 3.10
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: miss-islington <31488909+miss-islington at users.noreply.github.com>
date: 2022-05-08T08:30:43-07:00
summary:

[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 <Alex.Waygood at Gmail.com>

Automerge-Triggered-By: GH:serhiy-storchaka

files:
M Doc/library/asyncio.rst

diff --git a/Doc/library/asyncio.rst b/Doc/library/asyncio.rst
index 94a853259d348..a6429394389b1 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



More information about the Python-checkins mailing list