diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-05-08 15:30:52 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-08 15:30:52 (GMT) |
commit | 29f592e6fed3ab9a13329bd603cbdf770ffe8a03 (patch) | |
tree | 6ef38e54fda5389f60750df09b54d7bd6493b24e | |
parent | dfad113715abf307b9d5fdc3d0bf4716faf5b001 (diff) | |
download | cpython-29f592e6fed3ab9a13329bd603cbdf770ffe8a03.zip cpython-29f592e6fed3ab9a13329bd603cbdf770ffe8a03.tar.gz cpython-29f592e6fed3ab9a13329bd603cbdf770ffe8a03.tar.bz2 |
[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@Gmail.com>
Automerge-Triggered-By: GH:serhiy-storchaka
-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 8f4d55a..66c7c4c 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 |