Show More
@@ -2851,5 +2851,14 b' class spanset(_orderedsetmixin):' | |||||
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() |
General Comments 0
You need to be logged in to leave comments.
Login now