]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Remove stale comment.
authorBen Darnell <ben@bendarnell.com>
Tue, 15 Sep 2015 13:27:26 +0000 (09:27 -0400)
committerBen Darnell <ben@bendarnell.com>
Tue, 15 Sep 2015 13:27:26 +0000 (09:27 -0400)
tornado/concurrent.py

index d3d878fec257ab4c14aa74e226f581919ce26e5f..5f8cdc4141214d7db01d07b83bb820ebd81c90d0 100644 (file)
@@ -179,7 +179,6 @@ class Future(object):
         """))
     else:
         # Py2-compatible version for use with cython.
-        # Late import of gen.Return to avoid cycles.
         def __await__(self):
             result = yield self
             # StopIteration doesn't take args before py33,