changeset 20416:e72bcc245ecb

revset: added docstring to baseset class
author Lucas Moscovicz <lmoscovicz@fb.com>
date Thu, 06 Feb 2014 11:33:36 -0800
parents 022431336f72
children 827561a99569
files mercurial/revset.py
diffstat 1 files changed, 3 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/revset.py	Mon Feb 10 00:54:40 2014 +0100
+++ b/mercurial/revset.py	Thu Feb 06 11:33:36 2014 -0800
@@ -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