Issue #23046: Expose the BaseEventLoop class in the asyncio namespace

This commit is contained in:
Victor Stinner 2015-01-06 01:03:58 +01:00
parent 63b55580fb
commit 8c1a4a2326
2 changed files with 4 additions and 2 deletions

View file

@ -18,6 +18,7 @@
import _overlapped # Will also be exported.
# This relies on each of the submodules having an __all__ variable.
from .base_events import *
from .coroutines import *
from .events import *
from .futures import *
@ -29,7 +30,8 @@
from .tasks import *
from .transports import *
__all__ = (coroutines.__all__ +
__all__ = (base_events.__all__ +
coroutines.__all__ +
events.__all__ +
futures.__all__ +
locks.__all__ +

View file

@ -35,7 +35,7 @@
from .log import logger
__all__ = ['BaseEventLoop', 'Server']
__all__ = ['BaseEventLoop']
# Argument for default thread pool executor creation.