cpython/Lib/asyncio
Andrew Svetlov 7208bfb64b
[3.6] bpo-33263: Fix FD leak in _SelectorSocketTransport (GH-6450) (#7025)
* bpo-33263 Fix FD leak in _SelectorSocketTransport. (GH-6450)

Under particular circumstances _SelectorSocketTransport can try to add a reader
even the transport is already being closed. This can lead to FD leak and
invalid stated of the following connections. Fixed the SelectorSocketTransport
to add the reader only if the trasport is still active..
(cherry picked from commit a84d0b361a)
2018-05-21 13:09:49 +03:00
..
__init__.py
base_events.py bpo-27456: Ensure TCP_NODELAY is set on linux (#4231) (#4898) 2017-12-15 21:53:08 -05:00
base_futures.py
base_subprocess.py
base_tasks.py
compat.py
constants.py [3.6] bpo-31970: Reduce performance overhead of asyncio debug mode. (GH-4314) (#4322) 2017-11-07 17:50:48 +01:00
coroutines.py [3.6] bpo-31970: Reduce performance overhead of asyncio debug mode. (GH-4314) (#4322) 2017-11-07 17:50:48 +01:00
events.py [3.6] bpo-31970: Reduce performance overhead of asyncio debug mode. (GH-4314) (#4322) 2017-11-07 17:50:48 +01:00
futures.py asyncio: Remove unused Future._tb_logger attribute (GH-4596) (#4598) 2017-11-28 10:32:28 +01:00
locks.py bpo-32841: Fix cancellation in awaiting asyncio.Condition (GH-5665) (GH-5683) 2018-02-14 12:10:18 +02:00
log.py
proactor_events.py [3.6] Fix TypeError is asyncio/proactor_events (GH-993) (#2061) 2017-06-10 00:15:28 -04:00
protocols.py
queues.py bpo-31620: have asyncio/queues not leak memory when you've exceptions during waiting (GH-3813) (#4326) 2017-11-07 22:08:15 +03:00
selector_events.py [3.6] bpo-33263: Fix FD leak in _SelectorSocketTransport (GH-6450) (#7025) 2018-05-21 13:09:49 +03:00
sslproto.py [3.6] bpo-33037: Skip sending/receiving after SSL transport closing (GH-6044) (GH-6058) 2018-03-10 19:09:07 +02:00
streams.py bpo-32034: Make IncompleteReadError & LimitOverrunError pickleable GH-4409 (#4411) 2017-11-15 19:28:25 -05:00
subprocess.py bpo-29704: Fix asyncio.SubprocessStreamProtocol closing (#405) 2017-03-02 23:31:17 -05:00
tasks.py [3.6] bpo-33584: Fix several minor bugs in asyncio. (GH-7003) (#7006) 2018-05-20 17:33:55 +03:00
test_utils.py [3.6] bpo-31250: test_asyncio: fix dangling threads (#3517) 2017-09-12 14:18:23 -07:00
transports.py
unix_events.py bpo-26133: Fix typos (GH-5010) (#5014) 2017-12-26 12:29:29 +02:00
windows_events.py
windows_utils.py