Merge fixes
authorKenneth Reitz <me@kennethreitz.com>
Fri, 14 Oct 2011 02:02:46 +0000 (22:02 -0400)
committerKenneth Reitz <me@kennethreitz.com>
Fri, 14 Oct 2011 02:02:50 +0000 (22:02 -0400)
requests/api.py
requests/models.py

index 54aeff8..ab388ed 100644 (file)
@@ -112,13 +112,9 @@ def get(url, **kwargs):
     :param **kwargs: Optional arguments that ``request`` takes.
     """
 
-    return request('GET', url, **kwargs)
+
     kwargs.setdefault('allow_redirects', True)
     return request('GET', url, **kwargs)
-    if "allow_redirects" not in kwargs:
-        kwargs["allow_redirects"] = True
-
-    return request('get', url, **kwargs)
 
 
 def head(url, **kwargs):
@@ -141,13 +137,8 @@ def head(url, **kwargs):
     :param **kwargs: Optional arguments that ``request`` takes.
     """
 
-    return request('HEAD', url, **kwargs)
     kwargs.setdefault('allow_redirects', True)
     return request('HEAD', url, **kwargs)
-    if "allow_redirects" not in kwargs:
-        kwargs["allow_redirects"] = True
-
-    return request('head', url, **kwargs)
 
 
 def post(url, data='', **kwargs):
index 4a304a5..bf564b8 100644 (file)
@@ -214,12 +214,7 @@ class Request(object):
 
             while (
                 ('location' in r.headers) and
-                ((self.method in ('GET', 'HEAD')) or
-                (r.status_code is codes.see_other) or
-                (self.allow_redirects))
                 ((r.status_code is codes.see_other) or (self.allow_redirects))
-                ((r.status_code is codes.see_other) or
-                (self.allow_redirects))
             ):
 
                 r.fo.close()