~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/index.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2008-07-14 08:21:19 UTC
  • mfrom: (3517.4.20 stacking)
  • Revision ID: pqm@pqm.ubuntu.com-20080714082119-ju6qe5weo8pp7f1c
merge integrated branch stacking

Show diffs side-by-side

added added

removed removed

Lines of Context:
284
284
    def __ne__(self, other):
285
285
        return not self.__eq__(other)
286
286
 
 
287
    def __repr__(self):
 
288
        return "%s(%r)" % (self.__class__.__name__,
 
289
            self._transport.abspath(self._name))
 
290
 
287
291
    def _buffer_all(self):
288
292
        """Buffer all the index data.
289
293