~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/__init__.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-02-18 02:33:47 UTC
  • mfrom: (1534.1.24 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20060218023347-0952c65f668bfd68
Merge Robert Collins integration.

Show diffs side-by-side

added added

removed removed

Lines of Context:
422
422
            subtree.rmdir(dir)
423
423
        self.rmdir(relpath)
424
424
 
 
425
    def __repr__(self):
 
426
        return "<%s.%s url=%s>" % (self.__module__, self.__class__.__name__, self.base)
 
427
 
425
428
    def stat(self, relpath):
426
429
        """Return the stat information for a file.
427
430
        WARNING: This may not be implementable for all protocols, so use
608
611
register_lazy_transport('https://', 'bzrlib.transport.http', 'HttpTransport')
609
612
register_lazy_transport('ftp://', 'bzrlib.transport.ftp', 'FtpTransport')
610
613
register_lazy_transport('aftp://', 'bzrlib.transport.ftp', 'FtpTransport')
611
 
register_lazy_transport('memory://', 'bzrlib.transport.memory', 'MemoryTransport')
 
614
register_lazy_transport('memory:/', 'bzrlib.transport.memory', 'MemoryTransport')
612
615
register_lazy_transport('readonly+', 'bzrlib.transport.readonly', 'ReadonlyTransportDecorator')