~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/inventory.py

  • Committer: Martin Pool
  • Date: 2005-09-15 05:15:58 UTC
  • Revision ID: mbp@sourcefrog.net-20050915051558-0d2738d29f376682
- improvements to weave commit [broken]
 
  - work out pointless commits by just comparing the inventories (much
    simpler)

  - fix up selective commit: start with a blank inventory and fill it
    from either the basis or working inventory depending on which
    files are selected

Show diffs side-by-side

added added

removed removed

Lines of Context:
496
496
 
497
497
 
498
498
    def __ne__(self, other):
499
 
        return not (self == other)
 
499
        return not self.__eq__(other)
500
500
 
501
501
 
502
502
    def __hash__(self):