~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/doc/api/transport.txt

Merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
   >>> import os
4
4
   >>> from bzrlib.osutils import getcwd, dirname
 
5
   >>> from bzrlib.urlutils import local_path_from_url
5
6
   >>> import bzrlib.transport as transport
6
7
   >>> root = transport.get_transport("file:///")
7
8
   >>>
9
10
Each Transport instance represents a single logical directory.
10
11
 
11
12
   >>> dir = transport.get_transport(".")
12
 
   >>> dir.base == getcwd() + '/'
 
13
   >>> local_path_from_url(dir.base) == getcwd() + '/'
13
14
   True
14
15
 
15
16
You can change directories via the clone method:
16
17
 
17
18
   >>> parent = dir.clone('..')
18
 
   >>> parent.base == (dirname(getcwd()).rstrip('/') + '/')
 
19
   >>> local_path_from_url(parent.base) == (dirname(getcwd()).rstrip('/') + '/')
19
20
   True