diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-03-08 21:32:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-08 21:32:46 (GMT) |
commit | 20e88f78a39ff56235c1d42ba4b947f5fa8e67b7 (patch) | |
tree | 092dff113a91d086b56458fd86e0539c63f1bfa2 /Lib/asyncio/base_events.py | |
parent | f8c3697aca55b64dec4bd3012f40bc96dcf76a77 (diff) | |
download | cpython-20e88f78a39ff56235c1d42ba4b947f5fa8e67b7.zip cpython-20e88f78a39ff56235c1d42ba4b947f5fa8e67b7.tar.gz cpython-20e88f78a39ff56235c1d42ba4b947f5fa8e67b7.tar.bz2 |
bpo-46955: Expose asyncio.base_events.Server as asyncio.Server (GH-31760)
This change aligns the documentation at https://docs.python.org/3/library/asyncio-eventloop.htmlGH-asyncio.Server
with the actual implementation
Co-authored-by: Andrew Svetlov <andrew.svetlov@gmail.com>
(cherry picked from commit da80d6b2f3beff519cb1457d5e055168c89f7224)
Co-authored-by: Stefan Zabka <zabkaste@informatik.hu-berlin.de>
Diffstat (limited to 'Lib/asyncio/base_events.py')
-rw-r--r-- | Lib/asyncio/base_events.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/asyncio/base_events.py b/Lib/asyncio/base_events.py index 8a380bb..7a14e5e 100644 --- a/Lib/asyncio/base_events.py +++ b/Lib/asyncio/base_events.py @@ -49,7 +49,7 @@ from . import trsock from .log import logger -__all__ = 'BaseEventLoop', +__all__ = 'BaseEventLoop','Server', # Minimum number of _scheduled timer handles before cleanup of |