pycompat: remove urlunquote alias
authorGregory Szorc <gregory.szorc@gmail.com>
Tue, 21 Mar 2017 22:28:16 -0700
changeset 31568 6c9772867344
parent 31567 4ebecf331d7d
child 31569 e68932dfbb55
pycompat: remove urlunquote alias It is duplicated by urlreq.unquote and is unused. Kill it. We retain the imports because it is re-exported via util.urlparse, which is used elsewhere. Since we no longer access attributes of urlparse at module load time, this change /should/ result in that module reverting to a lazy module.
mercurial/pycompat.py
--- a/mercurial/pycompat.py	Tue Mar 21 22:23:11 2017 -0700
+++ b/mercurial/pycompat.py	Tue Mar 21 22:28:16 2017 -0700
@@ -23,7 +23,6 @@
     import Queue as _queue
     import SocketServer as socketserver
     import urlparse
-    urlunquote = urlparse.unquote
     import xmlrpclib
 else:
     import http.client as httplib
@@ -31,7 +30,6 @@
     import queue as _queue
     import socketserver
     import urllib.parse as urlparse
-    urlunquote = urlparse.unquote_to_bytes
     import xmlrpc.client as xmlrpclib
 
 if ispy3: