mercurial/revset.py
changeset 41709 5fe4de392edb
parent 41691 8185c8abce87
child 42002 662ffdde5adf
--- a/mercurial/revset.py	Wed Feb 13 12:09:36 2019 -0800
+++ b/mercurial/revset.py	Wed Feb 13 18:17:42 2019 +0530
@@ -863,7 +863,13 @@
 
 @predicate('expectsize(set[, size])', safe=True, takeorder=True)
 def expectsize(repo, subset, x, order):
-    """Abort if the revset doesn't expect given size"""
+    """Return the given revset if size matches the revset size.
+    Abort if the revset doesn't expect given size.
+    size can either be an integer range or an integer.
+
+    For example, ``expectsize(0:1, 3:5)`` will abort as revset size is 2 and
+    2 is not between 3 and 5 inclusive."""
+
     args = getargsdict(x, 'expectsize', 'set size')
     minsize = 0
     maxsize = len(repo) + 1