mercurial/revset.py
changeset 22508 2434c68d82a8
parent 22504 c425b22a7ca5
child 22509 fbae659543cf
equal deleted inserted replaced
22507:5c00c5298f98 22508:2434c68d82a8
  2849         return self._start >= self._end
  2849         return self._start >= self._end
  2850 
  2850 
  2851     def filter(self, l):
  2851     def filter(self, l):
  2852         return orderedlazyset(self, l, ascending=self.isascending())
  2852         return orderedlazyset(self, l, ascending=self.isascending())
  2853 
  2853 
       
  2854 class fullreposet(spanset):
       
  2855     """a set containing all revisions in the repo
       
  2856 
       
  2857     This class exists to host special optimisation.
       
  2858     """
       
  2859 
       
  2860     def __init__(self, repo):
       
  2861         super(fullreposet, self).__init__(repo)
       
  2862 
  2854 # tell hggettext to extract docstrings from these functions:
  2863 # tell hggettext to extract docstrings from these functions:
  2855 i18nfunctions = symbols.values()
  2864 i18nfunctions = symbols.values()