~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/bzrdir.py

Various cosmetic changes.

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
292
298
        This will use the current default BzrDirFormat, and use whatever 
293
299
        repository format that that uses for bzrdirformat.create_repository.
294
300
 
295
 
        ;param shared: Create a shared repository rather than a standalone
 
301
        :param shared: Create a shared repository rather than a standalone
296
302
                       repository.
297
303
        The Repository object is returned.
298
304
 
313
319
        repository format that that uses for bzrdirformat.create_workingtree,
314
320
        create_branch and create_repository.
315
321
 
316
 
        The WorkingTree object is returned.
 
322
        :return: The WorkingTree object.
317
323
        """
318
324
        t = get_transport(safe_unicode(base))
319
325
        if not isinstance(t, LocalTransport):