/usr/lib64/python3.9/asyncio
NameSizeModeActions
__pycache__/-0755rm
base_events.py741920644editdlrm
base_futures.py25740644editdlrm
base_subprocess.py88430644editdlrm
base_tasks.py24670644editdlrm
constants.py8880644editdlrm
coroutines.py87970644editdlrm
events.py264510644editdlrm
exceptions.py16330644editdlrm
format_helpers.py24040644editdlrm
futures.py140420644editdlrm
locks.py151810644editdlrm
log.py1240644editdlrm
proactor_events.py321460644editdlrm
protocols.py69570644editdlrm
queues.py83050644editdlrm
runners.py21250644editdlrm
selector_events.py395000644editdlrm
sslproto.py274590644editdlrm
staggered.py59920644editdlrm
streams.py266560644editdlrm
subprocess.py80700644editdlrm
tasks.py344190644editdlrm
threads.py7900644editdlrm
transports.py107240644editdlrm
trsock.py58760644editdlrm
unix_events.py517540644editdlrm
windows_events.py330540644editdlrm
windows_utils.py50600644editdlrm
__init__.py12790644editdlrm
__main__.py33790644editdlrm
Edit: /usr/lib64/python3.9/asyncio/constants.py (888B)
import enum # After the connection is lost, log warnings after this many write()s. LOG_THRESHOLD_FOR_CONNLOST_WRITES = 5 # Seconds to wait before retrying accept(). ACCEPT_RETRY_DELAY = 1 # Number of stack entries to capture in debug mode. # The larger the number, the slower the operation in debug mode # (see extract_stack() in format_helpers.py). DEBUG_STACK_DEPTH = 10 # Number of seconds to wait for SSL handshake to complete # The default timeout matches that of Nginx. SSL_HANDSHAKE_TIMEOUT = 60.0 # Used in sendfile fallback code. We use fallback for platforms # that don't support sendfile, or for TLS connections. SENDFILE_FALLBACK_READBUFFER_SIZE = 1024 * 256 # The enum should be here to break circular dependencies between # base_events and sslproto class _SendfileMode(enum.Enum): UNSUPPORTED = enum.auto() TRY_NATIVE = enum.auto() FALLBACK = enum.auto()