https://github.com/python/cpython/commit/29f592e6fed3ab9a13329bd603cbdf770ffe8a03 commit: 29f592e6fed3ab9a13329bd603cbdf770ffe8a03 branch: 3.11 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月08日T08:30:52-07:00 summary: [3.11] gh-92417: `asyncio` docs: `asyncio.run()` is available on all supported Python versions (GH-92419) (GH-92462) (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 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