PATH: //usr/lib64/python3.9/asyncio
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 __init__.py
↓
X
📄 __main__.py
↓
X
📁 __pycache__/
X
📄 base_events.py
↓
X
📄 base_futures.py
↓
X
📄 base_subprocess.py
↓
X
📄 base_tasks.py
↓
X
📄 constants.py
↓
X
📄 coroutines.py
↓
X
📄 events.py
↓
X
📄 exceptions.py
↓
X
📄 format_helpers.py
↓
X
📄 futures.py
↓
X
📄 locks.py
↓
X
📄 log.py
↓
X
📄 proactor_events.py
↓
X
📄 protocols.py
↓
X
📄 queues.py
↓
X
📄 runners.py
↓
X
📄 selector_events.py
↓
X
📄 sslproto.py
↓
X
📄 staggered.py
↓
X
📄 streams.py
↓
X
📄 subprocess.py
↓
X
📄 tasks.py
↓
X
📄 threads.py
↓
X
📄 transports.py
↓
X
📄 trsock.py
↓
X
📄 unix_events.py
↓
X
📄 windows_events.py
↓
X
📄 windows_utils.py
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: constants.py
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()
SIMPAN PERUBAHAN