From 5be412db133b46288409a9bb195c24f9e74cf405 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 30 Jan 2012 09:33:14 -0500 Subject: [PATCH] Brendon Crawford --- AUTHORS.rst | 1 + requests/models.py | 5 ----- 2 files changed, 1 insertion(+), 5 deletions(-) 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) -- 2.34.1