]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Remove some debugging code that was accidentally committed.
authorBen Darnell <ben@bendarnell.com>
Sun, 1 Mar 2015 19:38:14 +0000 (14:38 -0500)
committerBen Darnell <ben@bendarnell.com>
Sun, 1 Mar 2015 19:38:14 +0000 (14:38 -0500)
tornado/ioloop.py

index 6a339fafd80ea8ac4eea3c2b450e212896f6ac3c..3c7fb11115d520112a0707f5366b2485f787081d 100644 (file)
@@ -877,11 +877,7 @@ class PollIOLoop(IOLoop):
             deadline,
             functools.partial(stack_context.wrap(callback), *args, **kwargs),
             self)
-        try:
-            heapq.heappush(self._timeouts, timeout)
-        except:
-            print(self._timeouts, timeout)
-            raise
+        heapq.heappush(self._timeouts, timeout)
         return timeout
 
     def remove_timeout(self, timeout):