summaryrefslogtreecommitdiffstats
path: root/Lib/cookielib.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/cookielib.py')
-rw-r--r--Lib/cookielib.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/cookielib.py b/Lib/cookielib.py
index 7c794d4..313912e 100644
--- a/Lib/cookielib.py
+++ b/Lib/cookielib.py
@@ -644,8 +644,6 @@ def escape_path(path):
# And here, kind of: draft-fielding-uri-rfc2396bis-03
# (And in draft IRI specification: draft-duerst-iri-05)
# (And here, for new URI schemes: RFC 2718)
- if isinstance(path, str):
- path = path.encode("utf-8")
path = urllib.quote(path, HTTP_PATH_SAFE)
path = ESCAPED_CHAR_RE.sub(uppercase_escaped_char, path)
return path