From: A. Jesse Jiryu Davis Date: Tue, 17 Feb 2015 18:05:33 +0000 (-0500) Subject: Event.io_loop is unused. X-Git-Tag: v4.2.0b1~103^2~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c229167edda73510f062fded67a30eb4d032fd08;p=thirdparty%2Ftornado.git Event.io_loop is unused. --- diff --git a/tornado/locks.py b/tornado/locks.py index 6bf4b5bc7..823204079 100644 --- a/tornado/locks.py +++ b/tornado/locks.py @@ -90,7 +90,6 @@ class Event(object): Similar to `threading.Event`. """ def __init__(self): - self.io_loop = ioloop.IOLoop.current() self._condition = Condition() self._flag = False