summaryrefslogtreecommitdiff
path: root/Lib/asyncio/base_events.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-01-06 01:03:58 +0100
committerVictor Stinner <victor.stinner@gmail.com>2015-01-06 01:03:58 +0100
commit8c1a4a2326e8a81bd4cc4fb81e51c003059cd687 (patch)
tree201eb0b7d1a40ce8c01540cc29435a2e344b636f /Lib/asyncio/base_events.py
parent63b55580fbe496204100e548ad41a10d933cc470 (diff)
downloadcpython-git-8c1a4a2326e8a81bd4cc4fb81e51c003059cd687.tar.gz
Issue #23046: Expose the BaseEventLoop class in the asyncio namespace
Diffstat (limited to 'Lib/asyncio/base_events.py')
-rw-r--r--Lib/asyncio/base_events.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/asyncio/base_events.py b/Lib/asyncio/base_events.py
index 684c9ecd49..59f31364ec 100644
--- a/Lib/asyncio/base_events.py
+++ b/Lib/asyncio/base_events.py
@@ -35,7 +35,7 @@ from .coroutines import coroutine
from .log import logger
-__all__ = ['BaseEventLoop', 'Server']
+__all__ = ['BaseEventLoop']
# Argument for default thread pool executor creation.