revert the changes done for issue14826 - quoting witin Request is not desirable.

This commit is contained in:
Senthil Kumaran 2012-07-08 18:00:47 -07:00
commit 612a815820
3 changed files with 0 additions and 11 deletions

View file

@ -264,7 +264,6 @@ class Request:
method=None):
# unwrap('<URL:type://host/path>') --> 'type://host/path'
self.full_url = unwrap(url)
self.full_url = quote(self.full_url, safe="%/:=&?~#+!$,;'@()*[]|")
self.full_url, self.fragment = splittag(self.full_url)
self.data = data
self.headers = {}