~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/branch.py

  • Committer: Aaron Bentley
  • Date: 2006-06-12 02:11:45 UTC
  • mfrom: (1759.2.2 integration)
  • mto: This revision was merged to the branch mainline in revision 1767.
  • Revision ID: aaron.bentley@utoronto.ca-20060612021145-0ced20f7791f3c66
Fix some typos (found using aspell) (Jelmer Vernooij).

Show diffs side-by-side

added added

removed removed

Lines of Context:
477
477
        revision_id: if not None, the revision history in the new branch will
478
478
                     be truncated to end with revision_id.
479
479
        """
480
 
        # for API compatability, until 0.8 releases we provide the old api:
 
480
        # for API compatibility, until 0.8 releases we provide the old api:
481
481
        # def clone(self, to_location, revision=None, basis_branch=None, to_branch_format=None):
482
482
        # after 0.8 releases, the *args and **kwargs should be changed:
483
483
        # def clone(self, to_bzrdir, revision_id=None):
485
485
            kwargs.get('revision', None) or
486
486
            kwargs.get('basis_branch', None) or
487
487
            (len(args) and isinstance(args[0], basestring))):
488
 
            # backwards compatability api:
 
488
            # backwards compatibility api:
489
489
            warn("Branch.clone() has been deprecated for BzrDir.clone() from"
490
490
                 " bzrlib 0.8.", DeprecationWarning, stacklevel=3)
491
491
            # get basis_branch
637
637
 
638
638
    def initialize(self, a_bzrdir):
639
639
        """Create a branch of this format in a_bzrdir."""
640
 
        raise NotImplementedError(self.initialized)
 
640
        raise NotImplementedError(self.initialize)
641
641
 
642
642
    def is_supported(self):
643
643
        """Is this format supported?
1269
1269
 
1270
1270
        This could memoise the branch, but if thats done
1271
1271
        it must be revalidated on each new lock.
1272
 
        So for now we just dont memoise it.
 
1272
        So for now we just don't memoise it.
1273
1273
        # RBC 20060304 review this decision.
1274
1274
        """
1275
1275
        bound_loc = self.get_bound_location()
1321
1321
        # There may be a different check you could do here
1322
1322
        # rather than actually trying to install revisions remotely.
1323
1323
        # TODO: capture an exception which indicates the remote branch
1324
 
        #       is not writeable. 
 
1324
        #       is not writable. 
1325
1325
        #       If it is up-to-date, this probably should not be a failure
1326
1326
        
1327
1327
        # lock other for write so the revision-history syncing cannot race