# HG changeset patch # User Pierre-Yves David # Date 1412314797 18000 # Node ID 38f0ab661b0f548176c61246fa08c8a0457341fa # Parent 8e4ff34b69b2c814f7587dd50cdf121e7df3a6a5 spanset: use base implementation for filter diff -r 8e4ff34b69b2 -r 38f0ab661b0f mercurial/revset.py --- a/mercurial/revset.py Fri Oct 03 01:27:00 2014 -0500 +++ b/mercurial/revset.py Fri Oct 03 00:39:57 2014 -0500 @@ -2962,9 +2962,6 @@ def isdescending(self): return self._start >= self._end - def filter(self, l): - return orderedlazyset(self, l, ascending=self.isascending()) - class fullreposet(_spanset): """a set containing all revisions in the repo