From: Ben Darnell Date: Tue, 15 Sep 2015 13:27:26 +0000 (-0400) Subject: Remove stale comment. X-Git-Tag: v4.3.0b1~42 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9091c9c1de272435a5ed1d0c9e2f1e00518dc89d;p=thirdparty%2Ftornado.git Remove stale comment. --- diff --git a/tornado/concurrent.py b/tornado/concurrent.py index d3d878fec..5f8cdc414 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,