mercurial/hbisect.py
changeset 17493 d057e92dadfc
parent 16834 cafd8a8fb713
child 17509 f7767f52e9eb
equal deleted inserted replaced
17492:973c2b0b403c 17493:d057e92dadfc
   168     """
   168     """
   169     state = load_state(repo)
   169     state = load_state(repo)
   170     if status in ('good', 'bad', 'skip', 'current'):
   170     if status in ('good', 'bad', 'skip', 'current'):
   171         return map(repo.changelog.rev, state[status])
   171         return map(repo.changelog.rev, state[status])
   172     else:
   172     else:
   173         # In the floowing sets, we do *not* call 'bisect()' with more
   173         # In the following sets, we do *not* call 'bisect()' with more
   174         # than one level of recusrsion, because that can be very, very
   174         # than one level of recusrsion, because that can be very, very
   175         # time consuming. Instead, we always develop the expression as
   175         # time consuming. Instead, we always develop the expression as
   176         # much as possible.
   176         # much as possible.
   177 
   177 
   178         # 'range' is all csets that make the bisection:
   178         # 'range' is all csets that make the bisection: