ACIL FM
Dark
Refresh
Current DIR:
/lib64/python3.9/asyncio
/
lib64
python3.9
asyncio
Upload
Zip Selected
Delete Selected
Pilih semua
Nama
Ukuran
Permission
Aksi
__pycache__
-
chmod
Open
Rename
Delete
base_events.py
72.45 MB
chmod
View
DL
Edit
Rename
Delete
base_futures.py
2.51 MB
chmod
View
DL
Edit
Rename
Delete
base_subprocess.py
8.64 MB
chmod
View
DL
Edit
Rename
Delete
base_tasks.py
2.41 MB
chmod
View
DL
Edit
Rename
Delete
constants.py
888 B
chmod
View
DL
Edit
Rename
Delete
coroutines.py
8.59 MB
chmod
View
DL
Edit
Rename
Delete
events.py
25.83 MB
chmod
View
DL
Edit
Rename
Delete
exceptions.py
1.59 MB
chmod
View
DL
Edit
Rename
Delete
format_helpers.py
2.35 MB
chmod
View
DL
Edit
Rename
Delete
futures.py
13.71 MB
chmod
View
DL
Edit
Rename
Delete
locks.py
14.83 MB
chmod
View
DL
Edit
Rename
Delete
log.py
124 B
chmod
View
DL
Edit
Rename
Delete
proactor_events.py
31.39 MB
chmod
View
DL
Edit
Rename
Delete
protocols.py
6.79 MB
chmod
View
DL
Edit
Rename
Delete
queues.py
8.11 MB
chmod
View
DL
Edit
Rename
Delete
runners.py
2.08 MB
chmod
View
DL
Edit
Rename
Delete
selector_events.py
38.57 MB
chmod
View
DL
Edit
Rename
Delete
sslproto.py
26.82 MB
chmod
View
DL
Edit
Rename
Delete
staggered.py
5.85 MB
chmod
View
DL
Edit
Rename
Delete
streams.py
26.03 MB
chmod
View
DL
Edit
Rename
Delete
subprocess.py
7.88 MB
chmod
View
DL
Edit
Rename
Delete
tasks.py
33.61 MB
chmod
View
DL
Edit
Rename
Delete
threads.py
790 B
chmod
View
DL
Edit
Rename
Delete
transports.py
10.47 MB
chmod
View
DL
Edit
Rename
Delete
trsock.py
5.74 MB
chmod
View
DL
Edit
Rename
Delete
unix_events.py
50.54 MB
chmod
View
DL
Edit
Rename
Delete
windows_events.py
32.28 MB
chmod
View
DL
Edit
Rename
Delete
windows_utils.py
4.94 MB
chmod
View
DL
Edit
Rename
Delete
__init__.py
1.25 MB
chmod
View
DL
Edit
Rename
Delete
__main__.py
3.3 MB
chmod
View
DL
Edit
Rename
Delete
Edit file: /lib64/python3.9/asyncio/exceptions.py
"""asyncio exceptions.""" __all__ = ('CancelledError', 'InvalidStateError', 'TimeoutError', 'IncompleteReadError', 'LimitOverrunError', 'SendfileNotAvailableError') class CancelledError(BaseException): """The Future or Task was cancelled.""" class TimeoutError(Exception): """The operation exceeded the given deadline.""" class InvalidStateError(Exception): """The operation is not allowed in this state.""" class SendfileNotAvailableError(RuntimeError): """Sendfile syscall is not available. Raised if OS does not support sendfile syscall for given socket or file type. """ class IncompleteReadError(EOFError): """ Incomplete read error. Attributes: - partial: read bytes string before the end of stream was reached - expected: total number of expected bytes (or None if unknown) """ def __init__(self, partial, expected): r_expected = 'undefined' if expected is None else repr(expected) super().__init__(f'{len(partial)} bytes read on a total of ' f'{r_expected} expected bytes') self.partial = partial self.expected = expected def __reduce__(self): return type(self), (self.partial, self.expected) class LimitOverrunError(Exception): """Reached the buffer limit while looking for a separator. Attributes: - consumed: total number of to be consumed bytes. """ def __init__(self, message, consumed): super().__init__(message) self.consumed = consumed def __reduce__(self): return type(self), (self.args[0], self.consumed)
Simpan
Batal
Isi Zip:
Unzip
Create
Buat Folder
Buat File
Terminal / Execute
Run
Chmod Bulk
All File
All Folder
All File dan Folder
Apply