/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

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

  • Committer: Jelmer Vernooij
  • Date: 2017-05-21 18:10:28 UTC
  • mto: This revision was merged to the branch mainline in revision 6623.
  • Revision ID: jelmer@jelmer.uk-20170521181028-zn04pdfw0od9hfj3
Rename brzlib => breezy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
The Transport API in brzlib provides URL based access to network resources.
 
1
The Transport API in breezy provides URL based access to network resources.
2
2
 
3
3
   >>> import os
4
4
   >>> import sys
5
 
   >>> from brzlib.osutils import getcwd, dirname
6
 
   >>> from brzlib.urlutils import local_path_from_url
7
 
   >>> import brzlib.transport as transport
 
5
   >>> from breezy.osutils import getcwd, dirname
 
6
   >>> from breezy.urlutils import local_path_from_url
 
7
   >>> import breezy.transport as transport
8
8
   >>> if sys.platform == 'win32':
9
9
   ...     root = transport.get_transport_from_url('file:///C:/')
10
10
   ... else: