diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-03-08 21:36:35 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-08 21:36:35 (GMT) |
commit | 8de434b332ed92ba2db90de6ed0969aee23735c2 (patch) | |
tree | 6c7eb7560821c023e93b6d2bde329fdca4453339 /Lib/asyncio/base_events.py | |
parent | 95b001fe6766f491f4356f8bcf23d6895bab2342 (diff) | |
download | cpython-8de434b332ed92ba2db90de6ed0969aee23735c2.zip cpython-8de434b332ed92ba2db90de6ed0969aee23735c2.tar.gz cpython-8de434b332ed92ba2db90de6ed0969aee23735c2.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 f51613d..952da11 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 |