Mercurial > hg > mercurial-source
diff mercurial/revset.py @ 20416:e72bcc245ecb
revset: added docstring to baseset class
author | Lucas Moscovicz <lmoscovicz@fb.com> |
---|---|
date | Thu, 06 Feb 2014 11:33:36 -0800 (2014-02-06) |
parents | b0638b5b004d |
children | 827561a99569 |
line wrap: on
line diff
--- a/mercurial/revset.py +++ b/mercurial/revset.py @@ -2043,6 +2043,9 @@ return funcs class baseset(list): + """Basic data structure that represents a revset and contains the basic + operation that it should be able to perform. + """ def __init__(self, data): super(baseset, self).__init__(data) self._set = None