mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
revert the changes done for issue14826 - quoting witin Request is not desirable.
This commit is contained in:
commit
612a815820
3 changed files with 0 additions and 11 deletions
|
@ -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 = {}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue