~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/bzrdir.py

  • Committer: Aaron Bentley
  • Date: 2006-12-22 05:14:34 UTC
  • mto: (2255.6.1 dirstate)
  • mto: This revision was merged to the branch mainline in revision 2322.
  • Revision ID: aaron.bentley@utoronto.ca-20061222051434-mv7zhuh0wp8hhfi8
get test suite passing

Show diffs side-by-side

added added

removed removed

Lines of Context:
1413
1413
    def __init__(self):
1414
1414
        self._workingtree_format = None
1415
1415
 
 
1416
    def __eq__(self, other):
 
1417
        if other.__class__ is not self.__class__:
 
1418
            return False
 
1419
        if other.repository_format != self.repository_format:
 
1420
            return False
 
1421
        if other.workingtree_format != self.workingtree_format:
 
1422
            return False
 
1423
        return True
 
1424
 
1416
1425
    def get_converter(self, format=None):
1417
1426
        """See BzrDirFormat.get_converter()."""
1418
1427
        if format is None: