/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/weave.py

  • Committer: Martin Pool
  • Date: 2005-08-18 04:25:42 UTC
  • Revision ID: mbp@sourcefrog.net-20050818042542-6af9da978f695195
- check for email address in BRANCH_ROOT/.bzr/email, so you can 
  easily use different per-project personas

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():