# HG changeset patch # User Pierre-Yves David # Date 1475977855 -7200 # Node ID 2e360578688dc50ff6d8eeb25980a9a1eb4f7163 # Parent b710dca9937aa9c1247127e2e39d810c18796944 bisect: rename 'check_code' to match our naming scheme We need to do it early, otherwise 'check-commit' will complain every time we touch it. diff -r b710dca9937a -r 2e360578688d mercurial/commands.py --- a/mercurial/commands.py Wed Aug 24 04:48:17 2016 +0200 +++ b/mercurial/commands.py Sun Oct 09 03:50:55 2016 +0200 @@ -835,7 +835,7 @@ Returns 0 on success. """ - def check_state(state, interactive=True): + def checkstate(state, interactive=True): if not state['good'] or not state['bad']: if (good or bad or skip or reset) and interactive: return @@ -913,7 +913,7 @@ rev = None # clear for future iterations state[transition].append(ctx.node()) ui.status(_('changeset %d:%s: %s\n') % (ctx, ctx, transition)) - check_state(state, interactive=False) + checkstate(state, interactive=False) # bisect nodes, changesets, bgood = hbisect.bisect(repo.changelog, state) # update to next check @@ -928,7 +928,7 @@ hbisect.printresult(ui, repo, state, displayer, nodes, bgood) return - if not check_state(state): + if not checkstate(state): return # actually bisect