This reverts commit
7b80c2f4db226d6fa3a7f3dfa59277da1d642f91.
URI spec requires that '/' and '%2F' be distinguishable, so it's incorrect
to escape at this level. The next commit will instead unquote captured
groups before passing them to get()/post() in web.py
import os
import socket
import time
-import urllib
import urlparse
try:
self._finish_time = None
scheme, netloc, path, query, fragment = urlparse.urlsplit(uri)
- self.raw_path = path
- self.path = urllib.unquote(path)
+ self.path = path
self.query = query
arguments = cgi.parse_qs(query)
self.arguments = {}