mercurial/revset.py
changeset 22856 c1546d7400ef
parent 22855 b5492b6bc7e8
child 22857 88e8a18329d3
--- a/mercurial/revset.py	Thu Oct 09 04:27:01 2014 -0700
+++ b/mercurial/revset.py	Thu Oct 09 04:27:25 2014 -0700
@@ -2382,12 +2382,6 @@
 
         return self.filter(lambda x: x not in other)
 
-    def __and__(self, other):
-        """Returns a new object with the intersection of the two collections.
-
-        This is part of the mandatory API for smartset."""
-        return baseset([y for y in self if y in other])
-
     def isascending(self):
         """Returns True if the collection is ascending order, False if not.