]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-92417: `asyncio` docs: `asyncio.run()` is available on all supported Python versio...
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Mon, 9 May 2022 16:49:25 +0000 (09:49 -0700)
committerGitHub <noreply@github.com>
Mon, 9 May 2022 16:49:25 +0000 (09:49 -0700)
(cherry picked from commit f4e317b304c7f86e48885b4b74c7a8826648922c)

Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
Doc/library/asyncio.rst

index 94a853259d348336720af76673316a193a11b8d8..a6429394389b104d72669f5da0c7cbccbc5362f9 100644 (file)
@@ -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