diff options
author | Stefan Zabka <zabkaste@informatik.hu-berlin.de> | 2022-03-08 21:07:33 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-08 21:07:33 (GMT) |
commit | da80d6b2f3beff519cb1457d5e055168c89f7224 (patch) | |
tree | 1a873d455da7a14f7ea34cda9e65d6b5148f15f9 /Lib/asyncio/base_events.py | |
parent | c8a47e76a391c8818bf10a282cdcd3bb5c23ebf6 (diff) | |
download | cpython-da80d6b2f3beff519cb1457d5e055168c89f7224.zip cpython-da80d6b2f3beff519cb1457d5e055168c89f7224.tar.gz cpython-da80d6b2f3beff519cb1457d5e055168c89f7224.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.html#asyncio.Server
with the actual implementation
Co-authored-by: Andrew Svetlov <andrew.svetlov@gmail.com>
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 f9215c5..51c4e66 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 |