]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Fix imports
authorBen Darnell <ben@bendarnell.com>
Tue, 22 Feb 2011 19:32:01 +0000 (11:32 -0800)
committerBen Darnell <ben@bendarnell.com>
Tue, 22 Feb 2011 19:32:01 +0000 (11:32 -0800)
tornado/httpclient.py

index 1a522025d01417aaa07f1d1532b979c61a122a2b..7faef4287a8da5fc4f5476c4253951e90f14ef75 100644 (file)
@@ -1,4 +1,8 @@
+import httplib
+import time
+
 from tornado.escape import utf8
+from tornado import httputil
 
 class HTTPRequest(object):
     def __init__(self, url, method="GET", headers=None, body=None,
@@ -143,4 +147,4 @@ class HTTPError(Exception):
         Exception.__init__(self, "HTTP %d: %s" % (self.code, message))
 
 
-from tornado.curl_httpclient import *
+from tornado.curl_httpclient import AsyncHTTPClient, HTTPClient