diff mercurial/revset.py @ 25105:2f34746c27df

revset: remove unused 'only' from methods table The infix 'only' operator is mapped to 'only()' function by optimize(), so it won't be looked up as a method. The test shows it.
author Yuya Nishihara <yuya@tcha.org>
date Fri, 15 May 2015 22:38:24 +0900
parents bb2f543b48b5
children 5548f558db3d
line wrap: on
line diff
--- a/mercurial/revset.py	Tue Apr 14 16:23:54 2015 -0400
+++ b/mercurial/revset.py	Fri May 15 22:38:24 2015 +0900
@@ -2094,7 +2094,6 @@
     "ancestor": ancestorspec,
     "parent": parentspec,
     "parentpost": p1,
-    "only": only,
 }
 
 def optimize(x, small):