~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-11-04 18:51:39 UTC
  • mfrom: (2961.1.1 trunk)
  • Revision ID: pqm@pqm.ubuntu.com-20071104185139-kaio3sneodg2kp71
Authentication ring implementation (read-only)

Show diffs side-by-side

added added

removed removed

Lines of Context:
261
261
    def _abspath(self, relpath):
262
262
        """Generate an internal absolute path."""
263
263
        relpath = urlutils.unescape(relpath)
264
 
        if relpath[:1] == '/':
 
264
        if relpath == '':
 
265
            return '/'
 
266
        if relpath[0] == '/':
265
267
            return relpath
266
268
        cwd_parts = self._cwd.split('/')
267
269
        rel_parts = relpath.split('/')
270
272
            if i == '..':
271
273
                if not r:
272
274
                    raise ValueError("illegal relpath %r under %r"
273
 
                        % (relpath, self._cwd))
 
275
                        % relpath, self._cwd)
274
276
                r = r[:-1]
275
277
            elif i == '.' or i == '':
276
278
                pass
283
285
    """This makes a lock."""
284
286
 
285
287
    def __init__(self, path, transport):
 
288
        assert isinstance(transport, MemoryTransport)
286
289
        self.path = path
287
290
        self.transport = transport
288
291
        if self.path in self.transport._locks: