mirror of
https://github.com/kennethreitz/requests.git
synced 2026-06-05 22:50:18 +00:00
actually honor details
This commit is contained in:
@@ -10,6 +10,7 @@ History
|
||||
- Switch to Apache 2.0 license
|
||||
- Connection Adapters
|
||||
- Standard library logging
|
||||
- Reponse.iter_json
|
||||
|
||||
|
||||
0.14.2 (2012-10-27)
|
||||
|
||||
@@ -243,7 +243,7 @@ class Session(SessionMixin):
|
||||
req.auth = auth
|
||||
req.cookies = cookies
|
||||
# TODO: move to attached
|
||||
req.allow_redirects = allow_redirects
|
||||
# req.allow_redirects = allow_redirects
|
||||
req.proxies = proxies
|
||||
req.hooks = hooks
|
||||
|
||||
@@ -251,7 +251,7 @@ class Session(SessionMixin):
|
||||
|
||||
# TODO: prepare cookies.
|
||||
|
||||
resp = self.send(prep)
|
||||
resp = self.send(prep, prefetch, timeout, verify, cert)
|
||||
|
||||
# Redirect resolving generator.
|
||||
gen = self.resolve_redirects(resp, req, prefetch, timeout, verify, cert)
|
||||
|
||||
Reference in New Issue
Block a user