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

serhiy-storchaka webhook-mailer at python.org
Sun May 8 09:16:23 EDT 2022


https://github.com/python/cpython/commit/f4e317b304c7f86e48885b4b74c7a8826648922c
commit: f4e317b304c7f86e48885b4b74c7a8826648922c
branch: main
author: Alex Waygood <Alex.Waygood at Gmail.com>
committer: serhiy-storchaka <storchaka at gmail.com>
date: 2022-05-08T16:16:19+03:00
summary:

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

files:
M Doc/library/asyncio.rst

diff --git a/Doc/library/asyncio.rst b/Doc/library/asyncio.rst
index 8f4d55a9de059..66c7c4c24a918 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