diff --git a/mercurial/revset.py b/mercurial/revset.py index a02712fe0d..2054f9326b 100644 --- a/mercurial/revset.py +++ b/mercurial/revset.py @@ -2340,6 +2340,9 @@ class _addset(object): def __contains__(self, x): return x in self._r1 or x in self._r2 + def set(self): + return self + class _generatorset(object): """Wrap a generator for lazy iteration