~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/branch.py

  • Committer: Robert Collins
  • Date: 2005-09-26 08:56:15 UTC
  • mto: (1092.3.4)
  • mto: This revision was merged to the branch mainline in revision 1390.
  • Revision ID: robertc@robertcollins.net-20050926085615-99b8fb35f41b541d
massive patch from Alexander Belchenko - many PEP8 fixes, removes unused function uuid

Show diffs side-by-side

added added

removed removed

Lines of Context:
133
133
 
134
134
    @staticmethod
135
135
    def open_containing(url):
136
 
        """Open an existing branch, containing url (search upwards for the root)
 
136
        """Open an existing branch which contains url.
 
137
        
 
138
        This probes for a branch at url, and searches upwards from there.
137
139
        """
138
140
        if url and (url.startswith('http://') or url.startswith('https://')):
139
141
            from bzrlib.remotebranch import RemoteBranch