From: Ben Darnell Date: Mon, 20 Jan 2014 00:01:07 +0000 (-0500) Subject: Remove some unused imports (found by pyflakes) X-Git-Tag: v4.0.0b1~140 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4057cc78c9dd23e6b1548f42692f55c2d8508ed7;p=thirdparty%2Ftornado.git Remove some unused imports (found by pyflakes) --- diff --git a/tornado/platform/asyncio.py b/tornado/platform/asyncio.py index 9b70cd4fb..0a3fba3f7 100644 --- a/tornado/platform/asyncio.py +++ b/tornado/platform/asyncio.py @@ -13,7 +13,6 @@ from __future__ import absolute_import, division, print_function, with_statement import asyncio import datetime import functools -import os from tornado.ioloop import IOLoop from tornado import stack_context diff --git a/tornado/test/httpclient_test.py b/tornado/test/httpclient_test.py index 569ea872e..3b19c20e7 100644 --- a/tornado/test/httpclient_test.py +++ b/tornado/test/httpclient_test.py @@ -8,7 +8,6 @@ from contextlib import closing import functools import sys import threading -import time from tornado.escape import utf8 from tornado.httpclient import HTTPRequest, HTTPResponse, _RequestProxy, HTTPError, HTTPClient diff --git a/tornado/test/ioloop_test.py b/tornado/test/ioloop_test.py index 460dc50f7..31afbbc49 100644 --- a/tornado/test/ioloop_test.py +++ b/tornado/test/ioloop_test.py @@ -5,7 +5,6 @@ from __future__ import absolute_import, division, print_function, with_statement import contextlib import datetime import functools -import os import socket import sys import threading