~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/branch.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-06-14 06:07:45 UTC
  • mfrom: (2363.5.26 terse-info)
  • Revision ID: pqm@pqm.ubuntu.com-20070614060745-ywfqw6rm1sgtfx6i
'bzr info' gives terse info by default

Show diffs side-by-side

added added

removed removed

Lines of Context:
847
847
    _formats = {}
848
848
    """The known formats."""
849
849
 
 
850
    def __eq__(self, other):
 
851
        return self.__class__ is other.__class__
 
852
 
 
853
    def __ne__(self, other):
 
854
        return not (self == other)
 
855
 
850
856
    @classmethod
851
857
    def find_format(klass, a_bzrdir):
852
858
        """Return the format for the branch object in a_bzrdir."""