##// END OF EJS Templates
revset: added docstring to baseset class
Lucas Moscovicz -
r20416:e72bcc24 default
parent child Browse files
Show More
@@ -2043,6 +2043,9 b' def funcsused(tree):'
2043 2043 return funcs
2044 2044
2045 2045 class baseset(list):
2046 """Basic data structure that represents a revset and contains the basic
2047 operation that it should be able to perform.
2048 """
2046 2049 def __init__(self, data):
2047 2050 super(baseset, self).__init__(data)
2048 2051 self._set = None
General Comments 0
You need to be logged in to leave comments. Login now