summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio/proactor_events.py
diff options
context:
space:
mode:
authorYury Selivanov <yselivanov@sprymix.com>2015-08-04 19:57:05 (GMT)
committerYury Selivanov <yselivanov@sprymix.com>2015-08-04 19:57:05 (GMT)
commit4451cbed2223af639def3350d2e6451a40dc7b60 (patch)
tree17926d9df9352bad14b2d04a778635269dafae1d /Lib/asyncio/proactor_events.py
parentcb69843587369156487da26fa4a8148630785865 (diff)
parent78c89eb0aceeeaf67f537b8f6df8a3640acf4151 (diff)
downloadcpython-4451cbed2223af639def3350d2e6451a40dc7b60.zip
cpython-4451cbed2223af639def3350d2e6451a40dc7b60.tar.gz
cpython-4451cbed2223af639def3350d2e6451a40dc7b60.tar.bz2
Merge 3.5
Diffstat (limited to 'Lib/asyncio/proactor_events.py')
-rw-r--r--Lib/asyncio/proactor_events.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/asyncio/proactor_events.py b/Lib/asyncio/proactor_events.py
index 9c2b8f1..abe4c12 100644
--- a/Lib/asyncio/proactor_events.py
+++ b/Lib/asyncio/proactor_events.py
@@ -7,10 +7,10 @@ proactor is only implemented on Windows with IOCP.
__all__ = ['BaseProactorEventLoop']
import socket
-import sys
import warnings
from . import base_events
+from . import compat
from . import constants
from . import futures
from . import sslproto
@@ -79,7 +79,7 @@ class _ProactorBasePipeTransport(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 self._sock is not None:
warnings.warn("unclosed transport %r" % self, ResourceWarning)