/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 19:09:26 UTC
  • mfrom: (6622.1.36 breezy)
  • Revision ID: jelmer@jelmer.uk-20170521190926-5vtz8xaf0e9ylrpc
Merge rename to breezy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
The Transport API in bzrlib 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 bzrlib.osutils import getcwd, dirname
6
 
   >>> from bzrlib.urlutils import local_path_from_url
7
 
   >>> import bzrlib.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: