From: Parkayun Date: Tue, 16 Sep 2014 06:43:06 +0000 (+0900) Subject: Remove unused module in tornado.platform.asyncio X-Git-Tag: v4.1.0b1~83^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=26454ffb70127e60fa33f0ad7bda918a129379d5;p=thirdparty%2Ftornado.git Remove unused module in tornado.platform.asyncio --- diff --git a/tornado/platform/asyncio.py b/tornado/platform/asyncio.py index b40f0141a..dd6722a49 100644 --- a/tornado/platform/asyncio.py +++ b/tornado/platform/asyncio.py @@ -10,12 +10,10 @@ unfinished callbacks on the event loop that fail when it resumes) """ from __future__ import absolute_import, division, print_function, with_statement -import datetime import functools from tornado.ioloop import IOLoop from tornado import stack_context -from tornado.util import timedelta_to_seconds try: # Import the real asyncio module for py33+ first. Older versions of the