changeset 34070 | 01c9700fbf9f |
parent 33109 | 247bae545061 |
child 35501 | 12a46ad67a3c |
--- a/mercurial/smartset.py Sun Sep 03 17:03:23 2017 +0900 +++ b/mercurial/smartset.py Sun Sep 03 17:14:53 2017 +0900 @@ -357,7 +357,7 @@ def _fastsetop(self, other, op): # try to use native set operations as fast paths - if (type(other) is baseset and '_set' in other.__dict__ and '_set' in + if (type(other) is baseset and r'_set' in other.__dict__ and r'_set' in self.__dict__ and self._ascending is not None): s = baseset(data=getattr(self._set, op)(other._set), istopo=self._istopo)