equal
deleted
inserted
replaced
3100 # |
3100 # |
3101 # `other` was used with "&", let's assume this is a set like |
3101 # `other` was used with "&", let's assume this is a set like |
3102 # object. |
3102 # object. |
3103 other = baseset(other - self._hiddenrevs) |
3103 other = baseset(other - self._hiddenrevs) |
3104 |
3104 |
3105 if self.isascending(): |
3105 other.sort(reverse=self.isdescending()) |
3106 other.sort() |
|
3107 else: |
|
3108 other.sort(reverse) |
|
3109 return other |
3106 return other |
3110 |
3107 |
3111 # tell hggettext to extract docstrings from these functions: |
3108 # tell hggettext to extract docstrings from these functions: |
3112 i18nfunctions = symbols.values() |
3109 i18nfunctions = symbols.values() |