mercurial/debugcommands.py
changeset 47137 c261899fb282
parent 47128 bea4717415c0
child 47139 f58a13c52726
equal deleted inserted replaced
47136:84b176ad2860 47137:c261899fb282
   791     opts = pycompat.byteskwargs(opts)
   791     opts = pycompat.byteskwargs(opts)
   792     r = cmdutil.openrevlog(repo, b'debugdeltachain', file_, opts)
   792     r = cmdutil.openrevlog(repo, b'debugdeltachain', file_, opts)
   793     index = r.index
   793     index = r.index
   794     start = r.start
   794     start = r.start
   795     length = r.length
   795     length = r.length
   796     generaldelta = r.version & revlog.FLAG_GENERALDELTA
   796     generaldelta = r._generaldelta
   797     withsparseread = getattr(r, '_withsparseread', False)
   797     withsparseread = getattr(r, '_withsparseread', False)
   798 
   798 
   799     def revinfo(rev):
   799     def revinfo(rev):
   800         e = index[rev]
   800         e = index[rev]
   801         compsize = e[1]
   801         compsize = e[1]