##// END OF EJS Templates
smartset: fix default value of abstractsmartset.sort()...
Yuya Nishihara -
r33072:6d767d62 default
parent child Browse files
Show More
@@ -117,7 +117,7 b' class abstractsmartset(object):'
117 """reverse the expected iteration order"""
117 """reverse the expected iteration order"""
118 raise NotImplementedError()
118 raise NotImplementedError()
119
119
120 def sort(self, reverse=True):
120 def sort(self, reverse=False):
121 """get the set to iterate in an ascending or descending order"""
121 """get the set to iterate in an ascending or descending order"""
122 raise NotImplementedError()
122 raise NotImplementedError()
123
123
General Comments 0
You need to be logged in to leave comments. Login now