/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/multiparent.py

merge bzr.dev rev 4098

Show diffs side-by-side

added added

removed removed

Lines of Context:
290
290
            ' %(num_lines)r)' % self.__dict__
291
291
 
292
292
    def __eq__(self, other):
293
 
        if self.__class__ != other.__class__:
 
293
        if self.__class__ is not other.__class__:
294
294
            return False
295
295
        return (self.__dict__ == other.__dict__)
296
296