aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/asyncio/proactor_events.py
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2013-10-20 00:54:10 +0200
committerAntoine Pitrou <solipsis@pitrou.net>2013-10-20 00:54:10 +0200
commit4ca7355901049ff9a873cf236091e6780d7a8126 (patch)
tree27009b2d9683843b1bb89062a2cef914f95044f5 /Lib/asyncio/proactor_events.py
parent34d33a595b2e8f0736e5f05b43ddcbabb57b72be (diff)
downloadcpython-4ca7355901049ff9a873cf236091e6780d7a8126.tar.gz
cpython-4ca7355901049ff9a873cf236091e6780d7a8126.zip
Issue #19299: fix refleak test failures in test_asyncio
Diffstat (limited to 'Lib/asyncio/proactor_events.py')
-rw-r--r--Lib/asyncio/proactor_events.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/asyncio/proactor_events.py b/Lib/asyncio/proactor_events.py
index 665569f03a7..cb8625d9429 100644
--- a/Lib/asyncio/proactor_events.py
+++ b/Lib/asyncio/proactor_events.py
@@ -276,6 +276,7 @@ class BaseProactorEventLoop(base_events.BaseEventLoop):
self._proactor.close()
self._proactor = None
self._selector = None
+ super().close()
def sock_recv(self, sock, n):
return self._proactor.recv(sock, n)