Explicit imports and removal of unused variables
authorAlejandro Gómez <alejandroogomez@gmail.com>
Thu, 5 Jul 2012 19:23:21 +0000 (21:23 +0200)
committerAlejandro Gómez <alejandroogomez@gmail.com>
Thu, 5 Jul 2012 19:33:40 +0000 (21:33 +0200)
tests.py
tweepy/api.py

index 3905c6b07239f87224f5ba798b8bf50f2501532c..0c93fd6276cbd5ffdd432094702b869c323c30b1 100644 (file)
--- a/tests.py
+++ b/tests.py
@@ -3,7 +3,8 @@ import random
 from time import sleep
 import os
 
-from tweepy import *
+from tweepy import (API, BasicAuthHandler, OAuthHandler, Friendship, Cursor,
+                    MemoryCache, FileCache)
 
 """Configurations"""
 # Must supply twitter account credentials for tests
@@ -55,7 +56,7 @@ class TweepyAPITests(unittest.TestCase):
         self.api.retweets(123)
 
     def testgetstatus(self):
-        s = self.api.get_status(id=123)
+        self.api.get_status(id=123)
 
     def testupdateanddestroystatus(self):
         # test update
@@ -388,4 +389,3 @@ class TweepyCacheTests(unittest.TestCase):
 
 if __name__ == '__main__':
     unittest.main()
-
index c6bd5d0b077d002c25feeb516462e1f1fda513c5..ca834d1bc31ad8a83b41734aba952e3c24f2f6c6 100644 (file)
@@ -7,7 +7,7 @@ import mimetypes
 
 from tweepy.binder import bind_api
 from tweepy.error import TweepError
-from tweepy.parsers import ModelParser, RawParser
+from tweepy.parsers import ModelParser
 from tweepy.utils import list_to_csv
 
 
@@ -727,7 +727,7 @@ class API(object):
         try:
             if os.path.getsize(filename) > (max_size * 1024):
                 raise TweepError('File is too big, must be less than 700kb.')
-        except os.error, e:
+        except os.error:
             raise TweepError('Unable to access file')
 
         # image must be gif, jpeg, or png