Mercurial > public > mercurial-scm > hg
comparison mercurial/hbisect.py @ 17493:d057e92dadfc
spelling: following
author | timeless@mozdev.org |
---|---|
date | Fri, 17 Aug 2012 13:58:18 -0700 |
parents | cafd8a8fb713 |
children | f7767f52e9eb |
comparison
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: |