changeset 31568:6c9772867344

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.
author Gregory Szorc <gregory.szorc@gmail.com>
date Tue, 21 Mar 2017 22:28:16 -0700
parents 4ebecf331d7d
children e68932dfbb55
files mercurial/pycompat.py
diffstat 1 files changed, 0 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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: