~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/weave.py

  • Committer: aaron.bentley at utoronto
  • Date: 2005-08-18 02:24:28 UTC
  • mto: (1092.1.41) (1185.3.4) (974.1.47)
  • mto: This revision was merged to the branch mainline in revision 1110.
  • Revision ID: aaron.bentley@utoronto.ca-20050818022428-4c0bf84005f4dba8
mergedĀ mbp@sourcefrog.net-20050817233101-0939da1cf91f2472

Show diffs side-by-side

added added

removed removed

Lines of Context:
238
238
            basis_lineno.append(lineno)
239
239
            basis_lines.append(line)
240
240
 
241
 
        # another small special case: a merge, producing the same text as auto-merge
 
241
        # another small special case: a merge, producing the same text
 
242
        # as auto-merge
242
243
        if text == basis_lines:
243
244
            return new_version            
244
245
 
706
707
    print 'weave file        %9d bytes' % weave_size
707
708
    print 'total contents    %9d bytes' % total
708
709
    print 'compression ratio %9.2fx' % (float(total) / float(weave_size))
709
 
 
 
710
    if vers:
 
711
        avg = total/vers
 
712
        print 'average size      %9d bytes' % avg
 
713
        print 'relative size     %9.2fx' % (float(weave_size) / float(avg))
710
714
 
711
715
 
712
716
def usage():