~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/remote.py

  • Committer: Ian Clatworthy
  • Date: 2007-12-17 01:45:32 UTC
  • mto: (3119.1.1 ianc-integration)
  • mto: This revision was merged to the branch mainline in revision 3120.
  • Revision ID: ian.clatworthy@internode.on.net-20071217014532-dmbv2mm72nzq0ai6
follow-up tweaks to bzr.dev integration

Show diffs side-by-side

added added

removed removed

Lines of Context:
197
197
    Instances of this repository are represented by RemoteRepository
198
198
    instances.
199
199
 
200
 
    The RemoteRepositoryFormat is parameterized during construction
 
200
    The RemoteRepositoryFormat is parameterised during construction
201
201
    to reflect the capabilities of the real, remote format. Specifically
202
202
    the attributes rich_root_data and supports_tree_reference are set
203
203
    on a per instance basis, and are not set (and should not be) at
415
415
 
416
416
        return result
417
417
 
418
 
    def find_branches(self, using=False):
419
 
        """See Repository.find_branches()."""
420
 
        # should be an API call to the server.
421
 
        self._ensure_real()
422
 
        return self._real_repository.find_branches(using=using)
423
 
 
424
418
    def get_physical_lock_status(self):
425
419
        """See Repository.get_physical_lock_status()."""
426
420
        # should be an API call to the server.