2013-10-18 04:40:50 +08:00
|
|
|
"""The asyncio package, tracking PEP 3156."""
|
|
|
|
|
2017-12-11 07:36:12 +08:00
|
|
|
# flake8: noqa
|
|
|
|
|
2013-10-18 04:40:50 +08:00
|
|
|
import sys
|
|
|
|
|
|
|
|
# This relies on each of the submodules having an __all__ variable.
|
2015-01-06 08:03:58 +08:00
|
|
|
from .base_events import *
|
2014-06-29 06:46:45 +08:00
|
|
|
from .coroutines import *
|
2013-10-18 04:40:50 +08:00
|
|
|
from .events import *
|
2018-09-12 01:13:04 +08:00
|
|
|
from .exceptions import *
|
2014-01-25 22:32:06 +08:00
|
|
|
from .futures import *
|
2013-10-18 04:40:50 +08:00
|
|
|
from .locks import *
|
|
|
|
from .protocols import *
|
2017-12-14 22:42:21 +08:00
|
|
|
from .runners import *
|
2014-01-25 22:32:06 +08:00
|
|
|
from .queues import *
|
2013-10-18 04:40:50 +08:00
|
|
|
from .streams import *
|
2014-02-02 05:49:59 +08:00
|
|
|
from .subprocess import *
|
2013-10-18 04:40:50 +08:00
|
|
|
from .tasks import *
|
2020-05-19 11:03:28 +08:00
|
|
|
from .threads import *
|
2014-01-25 22:32:06 +08:00
|
|
|
from .transports import *
|
2013-10-18 04:40:50 +08:00
|
|
|
|
2015-01-06 08:03:58 +08:00
|
|
|
__all__ = (base_events.__all__ +
|
|
|
|
coroutines.__all__ +
|
2014-06-29 06:46:45 +08:00
|
|
|
events.__all__ +
|
2018-09-12 01:13:04 +08:00
|
|
|
exceptions.__all__ +
|
2014-01-25 22:32:06 +08:00
|
|
|
futures.__all__ +
|
2013-10-18 04:40:50 +08:00
|
|
|
locks.__all__ +
|
|
|
|
protocols.__all__ +
|
2017-12-14 22:42:21 +08:00
|
|
|
runners.__all__ +
|
2014-01-25 22:32:06 +08:00
|
|
|
queues.__all__ +
|
2013-10-18 04:40:50 +08:00
|
|
|
streams.__all__ +
|
2014-02-02 05:49:59 +08:00
|
|
|
subprocess.__all__ +
|
2014-01-25 22:32:06 +08:00
|
|
|
tasks.__all__ +
|
2020-05-19 11:03:28 +08:00
|
|
|
threads.__all__ +
|
2014-01-25 22:32:06 +08:00
|
|
|
transports.__all__)
|
2014-07-18 18:44:25 +08:00
|
|
|
|
|
|
|
if sys.platform == 'win32': # pragma: no cover
|
|
|
|
from .windows_events import *
|
|
|
|
__all__ += windows_events.__all__
|
|
|
|
else:
|
|
|
|
from .unix_events import * # pragma: no cover
|
|
|
|
__all__ += unix_events.__all__
|