mercurial/revset.py
changeset 22737 e03ece039b3a
parent 22736 3439b66f506e
child 22738 70a0664008ea
--- a/mercurial/revset.py	Fri Oct 03 00:30:58 2014 -0500
+++ b/mercurial/revset.py	Fri Oct 03 00:31:18 2014 -0500
@@ -2919,11 +2919,6 @@
             return True
         return False
 
-    def __sub__(self, x):
-        filterfunc = x.__contains__
-        return orderedlazyset(self, lambda r: not filterfunc(r),
-                              ascending=self.isascending())
-
     def __add__(self, x):
         kwargs = {}
         if self.isascending() and x.isascending():