##// END OF EJS Templates
revset: changed orderedlazyset to also extend _orderedsetmixin...
Lucas Moscovicz -
r20751:91a3d50f default
parent child Browse files
Show More
@@ -2367,7 +2367,7 b' class lazyset(object):'
2367 def filter(self, l):
2367 def filter(self, l):
2368 return lazyset(self, l)
2368 return lazyset(self, l)
2369
2369
2370 class orderedlazyset(lazyset):
2370 class orderedlazyset(_orderedsetmixin, lazyset):
2371 """Subclass of lazyset which subset can be ordered either ascending or
2371 """Subclass of lazyset which subset can be ordered either ascending or
2372 descendingly
2372 descendingly
2373 """
2373 """
General Comments 0
You need to be logged in to leave comments. Login now