summaryrefslogtreecommitdiff
path: root/cherrypy/_cpcompat.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2018-09-04 12:02:56 -0400
committerJason R. Coombs <jaraco@jaraco.com>2018-09-04 12:02:56 -0400
commit3cda35a4148965e048e27b043fdb5401a70e4dd3 (patch)
tree2f874f358618a2736d395446d25d37f0f57c01b0 /cherrypy/_cpcompat.py
parent836367fce3de31e65eadffa5d123869b913f801a (diff)
downloadcherrypy-git-3cda35a4148965e048e27b043fdb5401a70e4dd3.tar.gz
Use urllib.parse
Diffstat (limited to 'cherrypy/_cpcompat.py')
-rw-r--r--cherrypy/_cpcompat.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/cherrypy/_cpcompat.py b/cherrypy/_cpcompat.py
index 5d072244..16123a58 100644
--- a/cherrypy/_cpcompat.py
+++ b/cherrypy/_cpcompat.py
@@ -59,11 +59,6 @@ def assert_native(n):
HTTPSConnection = getattr(http.client, 'HTTPSConnection', None)
-unquote_plus = urllib.parse.unquote_plus
-unquote = urllib.parse.unquote
-quote = urllib.parse.quote
-
-
text_or_bytes = str, bytes