diff options
Diffstat (limited to 'Lib/asyncio/sslproto.py')
-rw-r--r-- | Lib/asyncio/sslproto.py | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/Lib/asyncio/sslproto.py b/Lib/asyncio/sslproto.py index ab7ff0bf93..61d31a3b29 100644 --- a/Lib/asyncio/sslproto.py +++ b/Lib/asyncio/sslproto.py @@ -6,7 +6,6 @@ except ImportError: # pragma: no cover ssl = None from . import base_events -from . import compat from . import protocols from . import transports from .log import logger @@ -325,15 +324,11 @@ class _SSLProtocolTransport(transports._FlowControlMixin, self._closed = True self._ssl_protocol._start_shutdown() - # On Python 3.3 and older, objects with a destructor part of a reference - # cycle are never destroyed. It's not more the case on Python 3.4 thanks - # to the PEP 442. - if compat.PY34: - def __del__(self): - if not self._closed: - warnings.warn("unclosed transport %r" % self, ResourceWarning, - source=self) - self.close() + def __del__(self): + if not self._closed: + warnings.warn("unclosed transport %r" % self, ResourceWarning, + source=self) + self.close() def pause_reading(self): """Pause the receiving end. |