# HG changeset patch # User Augie Fackler # Date 1476018145 14400 # Node ID e0d9b6aab4c55017f2753164aba62fa471f9ef3a # Parent eac5c1737f794d65c0673bf28e0d73e8cfe8c417 pycompat: introduce an alias for urllib.unquote We have to use unquote_to_bytes on Python 3, so we need an abstraction for this. diff -r eac5c1737f79 -r e0d9b6aab4c5 mercurial/pycompat.py --- a/mercurial/pycompat.py Mon Oct 17 17:42:46 2016 +0200 +++ b/mercurial/pycompat.py Sun Oct 09 09:02:25 2016 -0400 @@ -22,6 +22,7 @@ import Queue as _queue import SocketServer as socketserver import urlparse + urlunquote = urlparse.unquote import xmlrpclib else: import http.client as httplib @@ -30,6 +31,7 @@ import queue as _queue import socketserver import urllib.parse as urlparse + urlunquote = urlparse.unquote_to_bytes import xmlrpc.client as xmlrpclib if ispy3: