Edit File by line
/home/barbar84/www/wp-conte.../plugins/sujqvwi/AnonR/smanonr..../lib64/python3..../asyncio
File: __init__.py
"""The asyncio package, tracking PEP 3156."""
[0] Fix | Delete
[1] Fix | Delete
# flake8: noqa
[2] Fix | Delete
[3] Fix | Delete
import sys
[4] Fix | Delete
[5] Fix | Delete
# This relies on each of the submodules having an __all__ variable.
[6] Fix | Delete
from .base_events import *
[7] Fix | Delete
from .coroutines import *
[8] Fix | Delete
from .events import *
[9] Fix | Delete
from .exceptions import *
[10] Fix | Delete
from .futures import *
[11] Fix | Delete
from .locks import *
[12] Fix | Delete
from .protocols import *
[13] Fix | Delete
from .runners import *
[14] Fix | Delete
from .queues import *
[15] Fix | Delete
from .streams import *
[16] Fix | Delete
from .subprocess import *
[17] Fix | Delete
from .tasks import *
[18] Fix | Delete
from .transports import *
[19] Fix | Delete
[20] Fix | Delete
# Exposed for _asynciomodule.c to implement now deprecated
[21] Fix | Delete
# Task.all_tasks() method. This function will be removed in 3.9.
[22] Fix | Delete
from .tasks import _all_tasks_compat # NoQA
[23] Fix | Delete
[24] Fix | Delete
__all__ = (base_events.__all__ +
[25] Fix | Delete
coroutines.__all__ +
[26] Fix | Delete
events.__all__ +
[27] Fix | Delete
exceptions.__all__ +
[28] Fix | Delete
futures.__all__ +
[29] Fix | Delete
locks.__all__ +
[30] Fix | Delete
protocols.__all__ +
[31] Fix | Delete
runners.__all__ +
[32] Fix | Delete
queues.__all__ +
[33] Fix | Delete
streams.__all__ +
[34] Fix | Delete
subprocess.__all__ +
[35] Fix | Delete
tasks.__all__ +
[36] Fix | Delete
transports.__all__)
[37] Fix | Delete
[38] Fix | Delete
if sys.platform == 'win32': # pragma: no cover
[39] Fix | Delete
from .windows_events import *
[40] Fix | Delete
__all__ += windows_events.__all__
[41] Fix | Delete
else:
[42] Fix | Delete
from .unix_events import * # pragma: no cover
[43] Fix | Delete
__all__ += unix_events.__all__
[44] Fix | Delete
[45] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function