~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/__init__.py

  • Committer: Martin Pool
  • Date: 2006-02-22 04:29:54 UTC
  • mfrom: (1566 +trunk)
  • mto: This revision was merged to the branch mainline in revision 1569.
  • Revision ID: mbp@sourcefrog.net-20060222042954-60333f08dd56a646
[merge] from bzr.dev before integration
Fix undefined ordering in sign_my_revisions breaking tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
448
448
            subtree.rmdir(dir)
449
449
        self.rmdir(relpath)
450
450
 
 
451
    def __repr__(self):
 
452
        return "<%s.%s url=%s>" % (self.__module__, self.__class__.__name__, self.base)
 
453
 
451
454
    def stat(self, relpath):
452
455
        """Return the stat information for a file.
453
456
        WARNING: This may not be implementable for all protocols, so use
634
637
register_lazy_transport('https://', 'bzrlib.transport.http', 'HttpTransport')
635
638
register_lazy_transport('ftp://', 'bzrlib.transport.ftp', 'FtpTransport')
636
639
register_lazy_transport('aftp://', 'bzrlib.transport.ftp', 'FtpTransport')
637
 
register_lazy_transport('memory://', 'bzrlib.transport.memory', 'MemoryTransport')
 
640
register_lazy_transport('memory:/', 'bzrlib.transport.memory', 'MemoryTransport')
638
641
register_lazy_transport('readonly+', 'bzrlib.transport.readonly', 'ReadonlyTransportDecorator')