# HG changeset patch # User Durham Goode # Date 1505924910 25200 # Node ID 311f6ccf8f23733e8b327f903d6cda286cffe835 # Parent 1db9abf407c5a3fc57c45c7c1aa9613289709a05 debug: update debugbundle to use new deltaiter api Changegroup now has a deltaiter api for easy iteration over a series of deltas. Let's use that in the debugbundle command. Differential Revision: https://phab.mercurial-scm.org/D744 diff -r 1db9abf407c5 -r 311f6ccf8f23 mercurial/debugcommands.py --- a/mercurial/debugcommands.py Wed Sep 20 09:22:22 2017 -0700 +++ b/mercurial/debugcommands.py Wed Sep 20 09:28:30 2017 -0700 @@ -263,18 +263,11 @@ def showchunks(named): ui.write("\n%s%s\n" % (indent_string, named)) - chain = None - for chunkdata in iter(lambda: gen.deltachunk(chain), {}): - node = chunkdata['node'] - p1 = chunkdata['p1'] - p2 = chunkdata['p2'] - cs = chunkdata['cs'] - deltabase = chunkdata['deltabase'] - delta = chunkdata['delta'] + for deltadata in gen.deltaiter(): + node, p1, p2, cs, deltabase, delta, flags = deltadata ui.write("%s%s %s %s %s %s %s\n" % (indent_string, hex(node), hex(p1), hex(p2), hex(cs), hex(deltabase), len(delta))) - chain = node chunkdata = gen.changelogheader() showchunks("changelog") @@ -287,11 +280,9 @@ if isinstance(gen, bundle2.unbundle20): raise error.Abort(_('use debugbundle2 for this file')) chunkdata = gen.changelogheader() - chain = None - for chunkdata in iter(lambda: gen.deltachunk(chain), {}): - node = chunkdata['node'] + for deltadata in gen.deltaiter(): + node, p1, p2, cs, deltabase, delta, flags = deltadata ui.write("%s%s\n" % (indent_string, hex(node))) - chain = node def _debugobsmarkers(ui, part, indent=0, **opts): """display version and markers contained in 'data'"""