# HG changeset patch # User Lucas Moscovicz # Date 1394813279 25200 # Node ID fa1ac5faa7c4613bc4a627aabb8b9fdf9378e00e # Parent 41e1064486f96bd2761acf85e197e627346c292e revset: added __nonzero__ method to spanset class Implemented it in a lazy way, just look for the first non-filtered revision and return True if there's any revision at all. diff -r 41e1064486f9 -r fa1ac5faa7c4 mercurial/revset.py --- a/mercurial/revset.py Thu Mar 06 09:41:47 2014 -0800 +++ b/mercurial/revset.py Fri Mar 14 09:07:59 2014 -0700 @@ -2490,6 +2490,11 @@ return self._contained(x) and not (self._hiddenrevs and rev in self._hiddenrevs) + def __nonzero__(self): + for r in self: + return True + return False + def __and__(self, x): if isinstance(x, baseset): x = x.set()