~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/index.py

  • Committer: Robert Collins
  • Date: 2007-09-25 01:47:51 UTC
  • mfrom: (2592.5.17 pack-repository)
  • mto: This revision was merged to the branch mainline in revision 2933.
  • Revision ID: robertc@robertcollins.net-20070925014751-skcw309yznr5czka
Merge Martins refactoring work.

Show diffs side-by-side

added added

removed removed

Lines of Context:
496
496
        """
497
497
        self._indices = indices
498
498
 
 
499
    def __repr__(self):
 
500
        return "%s(%s)" % (
 
501
                self.__class__.__name__,
 
502
                ', '.join(map(repr, self._indices)))
 
503
 
499
504
    def insert_index(self, pos, index):
500
505
        """Insert a new index in the list of indices to query.
501
506