equal
deleted
inserted
replaced
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() |