From: Kenneth Reitz Date: Mon, 30 Jan 2012 14:33:14 +0000 (-0500) Subject: Brendon Crawford X-Git-Tag: v0.10.2~34 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5be412db133b46288409a9bb195c24f9e74cf405;p=services%2Fpython-requests.git Brendon Crawford --- diff --git a/AUTHORS.rst b/AUTHORS.rst index f80ce3b..7a8c5ad 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -78,3 +78,4 @@ Patches and Suggestions - takluyver - Ben Toews (mastahyeti) - David Kemp +- Brendon Crawford diff --git a/requests/models.py b/requests/models.py index 7ac85cc..dbc15f7 100644 --- a/requests/models.py +++ b/requests/models.py @@ -323,9 +323,6 @@ class Request(object): path = requote_path(path) - # print([ scheme, netloc, path, params, query, fragment ]) - # print('---------------------') - url = (urlunparse([ scheme, netloc, path, params, query, fragment ])) if self._enc_params: @@ -362,8 +359,6 @@ class Request(object): url.append('?') url.append(query) - # print(url) - return ''.join(url)