diff options
| author | Stefan Zabka <zabkaste@informatik.hu-berlin.de> | 2022-03-08 22:07:33 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-08 23:07:33 +0200 |
| commit | da80d6b2f3beff519cb1457d5e055168c89f7224 (patch) | |
| tree | 1a873d455da7a14f7ea34cda9e65d6b5148f15f9 /Lib/asyncio/base_events.py | |
| parent | c8a47e76a391c8818bf10a282cdcd3bb5c23ebf6 (diff) | |
| download | cpython-git-da80d6b2f3beff519cb1457d5e055168c89f7224.tar.gz | |
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 f9215c5e01..51c4e664d7 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 |
