~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/__init__.py

Basic BzrDir support.

Show diffs side-by-side

added added

removed removed

Lines of Context:
603
603
register_lazy_transport('https://', 'bzrlib.transport.http', 'HttpTransport')
604
604
register_lazy_transport('ftp://', 'bzrlib.transport.ftp', 'FtpTransport')
605
605
register_lazy_transport('aftp://', 'bzrlib.transport.ftp', 'FtpTransport')
606
 
register_lazy_transport('memory://', 'bzrlib.transport.memory', 'MemoryTransport')
 
606
register_lazy_transport('memory:/', 'bzrlib.transport.memory', 'MemoryTransport')
607
607
register_lazy_transport('readonly+', 'bzrlib.transport.readonly', 'ReadonlyTransportDecorator')