~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repofmt/pack_repo.py

  • Committer: Martin Pool
  • Date: 2010-01-04 06:56:46 UTC
  • mto: This revision was merged to the branch mainline in revision 4932.
  • Revision ID: mbp@sourcefrog.net-20100104065646-nyy2b7lq6lvbtkf5
Give RepositoryPackCollection a repr

Show diffs side-by-side

added added

removed removed

Lines of Context:
1423
1423
        # resumed packs
1424
1424
        self._resumed_packs = []
1425
1425
 
 
1426
    def __repr__(self):
 
1427
        return '%s(%r)' % (self.__class__.__name__, self.repo)
 
1428
 
1426
1429
    def add_pack_to_memory(self, pack):
1427
1430
        """Make a Pack object available to the repository to satisfy queries.
1428
1431