projects
/
services
/
python-requests.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
113b67c
)
Fix POST 303 redirect resonse handling
author
Yehuda Sadeh
<yehuda@inktank.com>
Thu, 31 Jan 2013 18:32:00 +0000
(10:32 -0800)
committer
Yehuda Sadeh
<yehuda@inktank.com>
Thu, 31 Jan 2013 19:23:09 +0000
(11:23 -0800)
This fixes issue #1156.
Signed-off-by: Yehuda Sadeh <yehuda@inktank.com>
requests/sessions.py
patch
|
blob
|
history
diff --git
a/requests/sessions.py
b/requests/sessions.py
index de3f5b75c0daa192943fe46445360fdbffd1c016..c0840f273aa0f50ff8e466080af2912caf8090ac 100644
(file)
--- a/
requests/sessions.py
+++ b/
requests/sessions.py
@@
-106,7
+106,7
@@
class SessionRedirectMixin(object):
url = urljoin(resp.url, requote_uri(url))
# http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.3.4
- if resp.status_code
is
codes.see_other and req.method != 'HEAD':
+ if resp.status_code
==
codes.see_other and req.method != 'HEAD':
method = 'GET'
# Do what the browsers do, despite standards...