~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/knit.py

  • Committer: Robert Collins
  • Date: 2008-09-19 06:53:41 UTC
  • mto: (3696.5.1 commit-updates)
  • mto: This revision was merged to the branch mainline in revision 3741.
  • Revision ID: robertc@robertcollins.net-20080919065341-5t5w1p2gi926nfia
First cut - make it work - at updating the tree stat cache during commit.

Show diffs side-by-side

added added

removed removed

Lines of Context:
726
726
            self._factory = KnitPlainFactory()
727
727
        self._fallback_vfs = []
728
728
 
 
729
    def __repr__(self):
 
730
        return "%s(%r, %r)" % (
 
731
            self.__class__.__name__,
 
732
            self._index,
 
733
            self._access)
 
734
 
729
735
    def add_fallback_versioned_files(self, a_versioned_files):
730
736
        """Add a source of texts for texts not present in this knit.
731
737