From: Ben Darnell Date: Sun, 1 Mar 2015 19:38:14 +0000 (-0500) Subject: Remove some debugging code that was accidentally committed. X-Git-Tag: v4.2.0b1~87 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=458cc4fe5d51b54835105ac6d2d82797b598b706;p=thirdparty%2Ftornado.git Remove some debugging code that was accidentally committed. --- diff --git a/tornado/ioloop.py b/tornado/ioloop.py index 6a339fafd..3c7fb1111 100644 --- a/tornado/ioloop.py +++ b/tornado/ioloop.py @@ -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):