# HG changeset patch # User Yuya Nishihara # Date 2015-05-16 05:05:02 # Node ID a94ef7f517e04b5c64cd3a0c73d737ac580c508b # Parent 40a2cf1c765bf6e10e150b9b6cdaeec6acf7eb26 revset: use fastasc/fastdesc switch consistently in addset.__iter__ diff --git a/mercurial/revset.py b/mercurial/revset.py --- a/mercurial/revset.py +++ b/mercurial/revset.py @@ -3047,15 +3047,13 @@ class addset(abstractsmartset): # try to use our own fast iterator if it exists self._trysetasclist() if self._ascending: - it = self.fastasc + attr = 'fastasc' else: - it = self.fastdesc + attr = 'fastdesc' + it = getattr(self, attr) if it is not None: return it() # maybe half of the component supports fast - attr = 'fastdesc' - if self._ascending: - attr = 'fastasc' # get iterator for _r1 iter1 = getattr(self._r1, attr) if iter1 is None: