cpython/Lib/asyncio
Victor Stinner a10dc3efcb
asyncio: use directly socket.socketpair() (#4597)
Since Python 3.5, socket.socketpair() is also available on Windows,
and so can be used directly, rather than using
asyncio.windows_utils.socketpair().
2017-11-28 11:15:26 +01:00
..
__init__.py
base_events.py bpo-31245: asyncio: Fix typo, isistance => isinstance (#4594) 2017-11-28 00:34:08 +01:00
base_futures.py
base_subprocess.py
base_tasks.py
compat.py
constants.py
coroutines.py
events.py bpo-32066: Support pathlib.Path in create_unix_connection; sock arg should be optional (#4447) 2017-11-20 17:26:28 -05:00
futures.py asyncio: Remove unused Future._tb_logger attribute (#4596) 2017-11-28 00:35:33 +01:00
locks.py
log.py
proactor_events.py asyncio: use directly socket.socketpair() (#4597) 2017-11-28 11:15:26 +01:00
protocols.py
queues.py
selector_events.py asyncio: use directly socket.socketpair() (#4597) 2017-11-28 11:15:26 +01:00
sslproto.py
streams.py
subprocess.py
tasks.py
test_utils.py
transports.py
unix_events.py asyncio: use directly socket.socketpair() (#4597) 2017-11-28 11:15:26 +01:00
windows_events.py asyncio: use directly socket.socketpair() (#4597) 2017-11-28 11:15:26 +01:00
windows_utils.py