actually honor details
authorKenneth Reitz <me@kennethreitz.com>
Mon, 17 Dec 2012 07:52:39 +0000 (02:52 -0500)
committerKenneth Reitz <me@kennethreitz.com>
Mon, 17 Dec 2012 07:52:39 +0000 (02:52 -0500)
HISTORY.rst
requests/sessions.py

index 941d69f..d2785aa 100644 (file)
@@ -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)
index 788e4a7..7dc6a75 100644 (file)
@@ -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)