Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Zahra Rajabi
tweepy
Commits
019a1b59
Commit
019a1b59
authored
Apr 18, 2014
by
Cody Coats
Browse files
removing extra whitespace
parent
49f47913
Changes
1
Hide whitespace changes
Inline
Side-by-side
tweepy/binder.py
View file @
019a1b59
...
...
@@ -68,7 +68,6 @@ def bind_api(**config):
# This causes Twitter to issue 301 redirect.
# See Issue https://github.com/tweepy/tweepy/issues/12
self
.
headers
[
'Host'
]
=
self
.
host
# Monitoring rate limits
self
.
_remaining_calls
=
None
self
.
_reset_time
=
None
...
...
@@ -78,7 +77,6 @@ def bind_api(**config):
for
idx
,
arg
in
enumerate
(
args
):
if
arg
is
None
:
continue
try
:
self
.
parameters
[
self
.
allowed_param
[
idx
]]
=
convert_to_utf8_str
(
arg
)
except
IndexError
:
...
...
@@ -169,7 +167,6 @@ def bind_api(**config):
resp
=
conn
.
getresponse
()
except
Exception
as
e
:
raise
TweepError
(
'Failed to send request: %s'
%
e
)
rem_calls
=
resp
.
getheader
(
'x-rate-limit-remaining'
)
if
rem_calls
is
not
None
:
self
.
_remaining_calls
=
int
(
rem_calls
)
...
...
@@ -180,7 +177,6 @@ def bind_api(**config):
self
.
_reset_time
=
int
(
reset_time
)
if
self
.
wait_on_rate_limit
and
self
.
_remaining_calls
==
0
and
(
resp
.
status
==
429
or
resp
.
status
==
420
):
# if ran out of calls before waiting switching retry last call
continue
retry_delay
=
self
.
retry_delay
# Exit request loop if non-retry error code
if
resp
.
status
==
200
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment