mercurial/revsetlang.py
branchstable
changeset 41297 b1ea90613af3
parent 41239 26b0a7514f01
child 41561 59638c6fcb70
--- a/mercurial/revsetlang.py	Fri Jan 18 16:03:37 2019 +0100
+++ b/mercurial/revsetlang.py	Fri Jan 18 14:21:47 2019 +0100
@@ -585,7 +585,7 @@
 
 def _formatargtype(c, arg):
     if c == 'd':
-        return 'rev(%d)' % int(arg)
+        return '_rev(%d)' % int(arg)
     elif c == 's':
         return _quote(arg)
     elif c == 'r':
@@ -663,9 +663,9 @@
     >>> formatspec(b'%r:: and %lr', b'10 or 11', (b"this()", b"that()"))
     '(10 or 11):: and ((this()) or (that()))'
     >>> formatspec(b'%d:: and not %d::', 10, 20)
-    'rev(10):: and not rev(20)::'
+    '_rev(10):: and not _rev(20)::'
     >>> formatspec(b'%ld or %ld', [], [1])
-    "_list('') or rev(1)"
+    "_list('') or _rev(1)"
     >>> formatspec(b'keyword(%s)', b'foo\\xe9')
     "keyword('foo\\\\xe9')"
     >>> b = lambda: b'default'