~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/knit.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2008-09-11 06:10:59 UTC
  • mfrom: (3702.1.1 trivial)
  • Revision ID: pqm@pqm.ubuntu.com-20080911061059-svzqfejar17ui4zw
(mbp) KnitVersionedFiles repr

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