diff options
author | Yury Selivanov <yselivanov@sprymix.com> | 2015-08-04 19:56:33 (GMT) |
---|---|---|
committer | Yury Selivanov <yselivanov@sprymix.com> | 2015-08-04 19:56:33 (GMT) |
commit | 2a8911c0b7176aec2791460c9beac2bf22daa725 (patch) | |
tree | 158de9746b3513029e9b7cc59a42e57876cc9e7b /Lib/asyncio/sslproto.py | |
parent | 996083d6e65a96304a3d7ff61420f99883d3137e (diff) | |
download | cpython-2a8911c0b7176aec2791460c9beac2bf22daa725.zip cpython-2a8911c0b7176aec2791460c9beac2bf22daa725.tar.gz cpython-2a8911c0b7176aec2791460c9beac2bf22daa725.tar.bz2 |
asyncio: Sync with upstream (compat module)
Diffstat (limited to 'Lib/asyncio/sslproto.py')
-rw-r--r-- | Lib/asyncio/sslproto.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/asyncio/sslproto.py b/Lib/asyncio/sslproto.py index 235855e..e566946 100644 --- a/Lib/asyncio/sslproto.py +++ b/Lib/asyncio/sslproto.py @@ -1,11 +1,11 @@ import collections -import sys import warnings try: import ssl except ImportError: # pragma: no cover ssl = None +from . import compat from . import protocols from . import transports from .log import logger @@ -317,7 +317,7 @@ class _SSLProtocolTransport(transports._FlowControlMixin, # 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 sys.version_info >= (3, 4): + if compat.PY34: def __del__(self): if not self._closed: warnings.warn("unclosed transport %r" % self, ResourceWarning) |