comparison mercurial/mdiff.py @ 2078:441ea218414e

Fill in the uncompressed size during revlog.addgroup This uses code from Matt to calculate the size change that would result from applying a delta to keep an accurate running total of the text size during revlog.addgroup
author mason@suse.com
date Tue, 04 Apr 2006 16:38:44 -0400
parents fde8fb2cbede
children b914f0557832
comparison
equal deleted inserted replaced
2077:4d0700ae0991 2078:441ea218414e
190 190
191 def patch(a, bin): 191 def patch(a, bin):
192 return mpatch.patches(a, [bin]) 192 return mpatch.patches(a, [bin])
193 193
194 patches = mpatch.patches 194 patches = mpatch.patches
195 patchedsize = mpatch.patchedsize
195 textdiff = bdiff.bdiff 196 textdiff = bdiff.bdiff