From 29f592e6fed3ab9a13329bd603cbdf770ffe8a03 Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Sun, 8 May 2022 08:30:52 -0700 Subject: [PATCH] [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 Automerge-Triggered-By: GH:serhiy-storchaka --- Doc/library/asyncio.rst | 1 - 1 file changed, 1 deletion(-) diff --git a/Doc/library/asyncio.rst b/Doc/library/asyncio.rst index 8f4d55a9de05..66c7c4c24a91 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 -- 2.47.2