Brendon Crawford

This commit is contained in:
Kenneth Reitz
2012-01-30 09:33:14 -05:00
parent 319b1ed551
commit 5be412db13
2 changed files with 1 additions and 5 deletions
+1
View File
@@ -78,3 +78,4 @@ Patches and Suggestions
- takluyver
- Ben Toews (mastahyeti)
- David Kemp
- Brendon Crawford
-5
View File
@@ -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)