# HG changeset patch # User Lucas Moscovicz # Date 2014-02-06 19:33:36 # Node ID e72bcc245ecb616c55c234d64e662b249aa7e245 # Parent 022431336f727e596b711dde3026a49069110ac0 revset: added docstring to baseset class diff --git a/mercurial/revset.py b/mercurial/revset.py --- a/mercurial/revset.py +++ b/mercurial/revset.py @@ -2043,6 +2043,9 @@ def funcsused(tree): 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