summaryrefslogtreecommitdiff
path: root/Lib/asyncio/futures.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-01-30 00:04:27 +0100
committerVictor Stinner <victor.stinner@gmail.com>2015-01-30 00:04:27 +0100
commit2647375cc98ac47dffdf495fc4b0fe5973b0375d (patch)
treedf9bf8676f542e148b28c8950a3ee2cab0f1cc0b /Lib/asyncio/futures.py
parent29b40c1569e96182ba677f7d31bce45695913105 (diff)
parent978a9afc6af6c137065bdcf7ae4ef5450e5b2ec2 (diff)
downloadcpython-git-2647375cc98ac47dffdf495fc4b0fe5973b0375d.tar.gz
Merge 3.4 (asyncio)
Diffstat (limited to 'Lib/asyncio/futures.py')
-rw-r--r--Lib/asyncio/futures.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/asyncio/futures.py b/Lib/asyncio/futures.py
index 19212a94b9..2c741fd422 100644
--- a/Lib/asyncio/futures.py
+++ b/Lib/asyncio/futures.py
@@ -195,9 +195,9 @@ class Future:
info = self._repr_info()
return '<%s %s>' % (self.__class__.__name__, ' '.join(info))
- # On Python 3.3 or 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.
+ # 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 _PY34:
def __del__(self):
if not self._log_traceback: