~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/revfile.py

  • Committer: mbp at sourcefrog
  • Date: 2005-04-09 05:20:54 UTC
  • Revision ID: mbp@sourcefrog.net-20050409052054-7b5a7dc9e86e1689b6bb7aa5
doc

Show diffs side-by-side

added added

removed removed

Lines of Context:
207
207
        # If the delta is larger than the text, we might as well just
208
208
        # store the text.  (OK, the delta might be more compressible,
209
209
        # but the overhead of applying it probably still makes it
210
 
        # bad.)
 
210
        # bad, and I don't want to compress both of them to find out.)
211
211
        if len(data) >= len(text):
212
212
            return self._add_full_text(text, text_sha)
213
213
        else: