~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/weave.py

  • Committer: Martin Pool
  • Date: 2005-10-04 02:27:27 UTC
  • mfrom: (1399)
  • mto: (1185.13.3)
  • mto: This revision was merged to the branch mainline in revision 1400.
  • Revision ID: mbp@sourcefrog.net-20051004022727-aee7064c62e039a7
[merge] merge robertc's format5 integration

 - test status on specific files
 - track x bit
 - baz2bzr fixes
 - remotebranch fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
350
350
 
351
351
        return new_version
352
352
 
 
353
    def add_identical(self, old_rev_id, new_rev_id, parents):
 
354
        """Add an identical text to old_rev_id as new_rev_id."""
 
355
        old_lines = self.get(self.lookup(old_rev_id))
 
356
        self.add(new_rev_id, parents, old_lines)
353
357
 
354
358
    def inclusions(self, versions):
355
359
        """Return set of all ancestors of given version(s)."""