~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/revisionspec.py

  • Committer: Lalo Martins
  • Date: 2005-09-08 11:08:13 UTC
  • mto: (1185.1.22)
  • mto: This revision was merged to the branch mainline in revision 1390.
  • Revision ID: lalo@exoweb.net-20050908110811-49e867a4d2c07bf2
getting rid of branch.lookup_revision()

Show diffs side-by-side

added added

removed removed

Lines of Context:
100
100
            return False
101
101
        if type(other) is type(self) and self.branch is not other.branch:
102
102
            return False
103
 
        print 'comparing', tuple(self), tuple(other)
104
103
        return tuple(self) == tuple(other)
105
104
 
106
105
    def __repr__(self):