From d37f91ce8eda1a32a6d741ba5e045ee8e8d319ff Mon Sep 17 00:00:00 2001 From: Ryan McGrath Date: Fri, 20 Nov 2009 04:19:43 -0500 Subject: [PATCH] Accidentally commited a changeset in the last push that stripped out all the import statements. Needless to say, this was bad - fixed now. --- twython.py | 5 +++++ twython3k.py | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/twython.py b/twython.py index d135f6e..cf05f71 100644 --- a/twython.py +++ b/twython.py @@ -10,6 +10,11 @@ Questions, comments? ryan@venodesigns.net """ +import httplib, urllib, urllib2, mimetypes, mimetools + +from urlparse import urlparse +from urllib2 import HTTPError + __author__ = "Ryan McGrath " __version__ = "0.8" diff --git a/twython3k.py b/twython3k.py index c55b1b7..dc7026c 100644 --- a/twython3k.py +++ b/twython3k.py @@ -10,6 +10,11 @@ Questions, comments? ryan@venodesigns.net """ +import http.client, urllib, urllib.request, urllib.error, urllib.parse, mimetypes, mimetools + +from urllib.parse import urlparse +from urllib.error import HTTPError + __author__ = "Ryan McGrath " __version__ = "0.8"