~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/memory.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-07-20 03:55:45 UTC
  • mfrom: (2634.1.1 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20070720035545-uh4yjypen2ux6z8s
(robertc) Reinstate the accidentally backed out external_url patch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
from cStringIO import StringIO
28
28
import warnings
29
29
 
30
 
from bzrlib.errors import TransportError, NoSuchFile, FileExists, LockError
 
30
from bzrlib.errors import (
 
31
    FileExists,
 
32
    LockError,
 
33
    InProcessTransport,
 
34
    NoSuchFile,
 
35
    TransportError,
 
36
    )
31
37
from bzrlib.trace import mutter
32
38
from bzrlib.transport import (
33
39
    LateReadError,
122
128
            raise NoSuchFile(relpath)
123
129
        del self._files[_abspath]
124
130
 
 
131
    def external_url(self):
 
132
        """See bzrlib.transport.Transport.external_url."""
 
133
        # MemoryTransport's are only accessible in-process
 
134
        # so we raise here
 
135
        raise InProcessTransport(self)
 
136
 
125
137
    def get(self, relpath):
126
138
        """See Transport.get()."""
127
139
        _abspath = self._abspath(relpath)