X7ROOT File Manager
Current Path:
/opt/alt/python34/lib64/python3.4/asyncio
opt
/
alt
/
python34
/
lib64
/
python3.4
/
asyncio
/
??
..
??
__init__.py
(1.4 KB)
??
__pycache__
??
base_events.py
(50.46 KB)
??
base_subprocess.py
(8.5 KB)
??
compat.py
(505 B)
??
constants.py
(195 B)
??
coroutines.py
(9.32 KB)
??
events.py
(20.87 KB)
??
futures.py
(15.96 KB)
??
locks.py
(14.26 KB)
??
log.py
(124 B)
??
proactor_events.py
(19.71 KB)
??
protocols.py
(4.41 KB)
??
queues.py
(7.67 KB)
??
selector_events.py
(38.49 KB)
??
sslproto.py
(24.85 KB)
??
streams.py
(23.27 KB)
??
subprocess.py
(7.01 KB)
??
tasks.py
(26.33 KB)
??
test_utils.py
(12.72 KB)
??
transports.py
(9.62 KB)
??
unix_events.py
(33.71 KB)
??
windows_events.py
(27.06 KB)
??
windows_utils.py
(6.68 KB)
Editing: compat.py
"""Compatibility helpers for the different Python versions.""" import sys PY34 = sys.version_info >= (3, 4) PY35 = sys.version_info >= (3, 5) def flatten_list_bytes(list_of_data): """Concatenate a sequence of bytes-like objects.""" if not PY34: # On Python 3.3 and older, bytes.join() doesn't handle # memoryview. list_of_data = ( bytes(data) if isinstance(data, memoryview) else data for data in list_of_data) return b''.join(list_of_data)
Upload File
Create Folder