diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-05-09 16:49:25 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-09 16:49:25 (GMT) |
commit | ad82e1244e000e13d0079c5be44e5591d6596419 (patch) | |
tree | 94f11a9ecc96e75e5273f8ec94a2608e94f2ad9a | |
parent | 7ae6f1ae09597ae76f15b98e13e767194d6f9fe2 (diff) | |
download | cpython-ad82e1244e000e13d0079c5be44e5591d6596419.zip cpython-ad82e1244e000e13d0079c5be44e5591d6596419.tar.gz cpython-ad82e1244e000e13d0079c5be44e5591d6596419.tar.bz2 |
gh-92417: `asyncio` docs: `asyncio.run()` is available on all supported Python versions (GH-92419)
(cherry picked from commit f4e317b304c7f86e48885b4b74c7a8826648922c)
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
-rw-r--r-- | Doc/library/asyncio.rst | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Doc/library/asyncio.rst b/Doc/library/asyncio.rst index 94a8532..a642939 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 |