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

miss-islington webhook-mailer at python.org
Mon May 9 12:49:33 EDT 2022


https://github.com/python/cpython/commit/ad82e1244e000e13d0079c5be44e5591d6596419
commit: ad82e1244e000e13d0079c5be44e5591d6596419
branch: 3.9
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-09T09:49:25-07:00
summary:

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

(cherry picked from commit f4e317b304c7f86e48885b4b74c7a8826648922c)

Co-authored-by: Alex Waygood <Alex.Waygood at Gmail.com>

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