Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98fa332 commit be0a2d7Copy full SHA for be0a2d7
1 file changed
Lib/asyncio/__init__.py
@@ -29,12 +29,6 @@
29
from .tasks import *
30
from .transports import *
31
32
-if sys.platform == 'win32': # pragma: no cover
33
- from .windows_events import *
34
-else:
35
- from .unix_events import * # pragma: no cover
36
-
37
38
__all__ = (coroutines.__all__ +
39
events.__all__ +
40
futures.__all__ +
@@ -45,3 +39,10 @@
45
subprocess.__all__ +
46
tasks.__all__ +
47
41
transports.__all__)
42
+
43
+if sys.platform == 'win32': # pragma: no cover
44
+ from .windows_events import *
+ __all__ += windows_events.__all__
+else:
+ from .unix_events import * # pragma: no cover
48
+ __all__ += unix_events.__all__
0 commit comments