]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-92417: `asyncio` docs: `asyncio.run()` is available on all supported Python versio...
authorAlex Waygood <Alex.Waygood@Gmail.com>
Sun, 8 May 2022 13:16:19 +0000 (14:16 +0100)
committerGitHub <noreply@github.com>
Sun, 8 May 2022 13:16:19 +0000 (16:16 +0300)
Doc/library/asyncio.rst

index 8f4d55a9de059ae760951c782dae2d8f5c4627ca..66c7c4c24a918391d1d258af5ea42bc96bcb52e0 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