mercurial/revset.py
changeset 22691 d8a08b68f754
parent 22690 d7ab5684711f
child 22692 78c916f24dd9
--- a/mercurial/revset.py	Wed Oct 01 15:50:54 2014 -0500
+++ b/mercurial/revset.py	Wed Oct 01 15:03:16 2014 -0500
@@ -2238,6 +2238,9 @@
     def __contains__(self):
         return self.set().__contains__
 
+    def __nonzero__(self):
+        return bool(len(self))
+
     def __sub__(self, other):
         """Returns a new object with the substraction of the two collections.