Remove API binding configuration option "timeout". Not used anywhere.
authorJoshua Roesslein <jroesslein@gmail.com>
Sun, 31 Jan 2010 02:02:59 +0000 (20:02 -0600)
committerJoshua Roesslein <jroesslein@gmail.com>
Sun, 31 Jan 2010 02:02:59 +0000 (20:02 -0600)
tweepy/binder.py

index 8efe9dc886496dbf22eea007f75e8ae7901d4055..1593600783e0348b7335aaf08009759f7a675d7b 100644 (file)
@@ -22,7 +22,6 @@ def bind_api(**config):
         allowed_param = config.get('allowed_param', [])
         method = config.get('method', 'GET')
         require_auth = config.get('require_auth', False)
-        timeout = config.get('timeout', None)
         search_api = config.get('search_api', False)
 
         def __init__(self, api, args, kargs):
@@ -107,7 +106,7 @@ def bind_api(**config):
             # Query the cache if one is available
             # and this request uses a GET method.
             if self.api.cache and self.method == 'GET':
-                cache_result = self.api.cache.get(url, self.timeout)
+                cache_result = self.api.cache.get(url)
                 # if cache result found and not expired, return it
                 if cache_result:
                     # must restore api reference