~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/bzrdir.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-09-14 04:53:15 UTC
  • mfrom: (1910.7.21 cosmetic)
  • Revision ID: pqm@pqm.ubuntu.com-20060914045315-d646c86b3f4722f2
(Andrew Bennetts, Robert Collins, Martin Pool) Various cosmetic improvements to docstrings and comments throughout bzrlib.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
# TODO: remove unittest dependency; put that stuff inside the test suite
24
24
 
 
25
# TODO: The Format probe_transport seems a bit redundant with just trying to
 
26
# open the bzrdir. -- mbp
 
27
#
 
28
# TODO: Can we move specific formats into separate modules to make this file
 
29
# smaller?
 
30
 
25
31
from copy import deepcopy
26
32
from cStringIO import StringIO
27
33
import os
298
304
        This will use the current default BzrDirFormat, and use whatever 
299
305
        repository format that that uses for bzrdirformat.create_repository.
300
306
 
301
 
        ;param shared: Create a shared repository rather than a standalone
 
307
        :param shared: Create a shared repository rather than a standalone
302
308
                       repository.
303
309
        The Repository object is returned.
304
310
 
319
325
        repository format that that uses for bzrdirformat.create_workingtree,
320
326
        create_branch and create_repository.
321
327
 
322
 
        The WorkingTree object is returned.
 
328
        :return: The WorkingTree object.
323
329
        """
324
330
        t = get_transport(safe_unicode(base))
325
331
        if not isinstance(t, LocalTransport):