From patchwork Fri Feb 7 00:01:41 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [1,of,3] revset: added docstring to baseset class From: Lucas Moscovicz X-Patchwork-Id: 3501 Message-Id: To: mercurial-devel@selenic.com Date: Thu, 06 Feb 2014 16:01:41 -0800 # HG changeset patch # User Lucas Moscovicz # Date 1391715216 28800 # Thu Feb 06 11:33:36 2014 -0800 # Node ID eacef209ab9af32854c4f9255bd5552ffb06b23f # Parent 19b9ecbf916636b9bbb74cb9e14b5f20aad39eb0 revset: added docstring to baseset class diff --git a/mercurial/revset.py b/mercurial/revset.py --- a/mercurial/revset.py +++ b/mercurial/revset.py @@ -2030,6 +2030,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