--- a/mercurial/pycompat.py Mon Oct 07 11:52:58 2019 -0400
+++ b/mercurial/pycompat.py Wed Oct 02 07:35:22 2019 +0900
@@ -337,11 +337,9 @@
ret = shlex.split(s.decode('latin-1'), comments, posix)
return [a.encode('latin-1') for a in ret]
- shlexquote = shlex.quote
else:
import cStringIO
- import pipes
xrange = xrange
unicode = unicode
@@ -408,7 +406,6 @@
sysplatform = sys.platform
sysexecutable = sys.executable
shlexsplit = shlex.split
- shlexquote = pipes.quote
bytesio = cStringIO.StringIO
stringio = bytesio
maplist = map