Submitter | Gregory Szorc |
---|---|
Date | Sept. 8, 2014, 10 p.m. |
Message ID | <b590210d167f2a0f6445.1410213650@gps-mbp.local> |
Download | mbox | patch |
Permalink | /patch/5733/ |
State | Deferred |
Headers | show |
Comments
Patch
diff --git a/mercurial/revset.py b/mercurial/revset.py --- a/mercurial/revset.py +++ b/mercurial/revset.py @@ -2350,9 +2350,9 @@ class lazyset(object): def __and__(self, x): return lazyset(self, x.__contains__) def __sub__(self, x): - return lazyset(self, lambda r: r not in x) + return _diffset(self, x) def __add__(self, x): return _addset(self, x)