diff --git a/tornado/concurrent.py b/tornado/concurrent.py index d3d878fe..5f8cdc41 100644 --- a/tornado/concurrent.py +++ b/tornado/concurrent.py @@ -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,