diff --git a/AUTHORS.rst b/AUTHORS.rst index f80ce3b6..7a8c5add 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 7ac85cc0..dbc15f76 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)