67
67
raise NoSuchFile(relpath)
68
68
return StringIO(self._files[relpath])
70
def put(self, relpath, f, mode=None):
71
71
"""See Transport.put()."""
72
72
self._check_parent(relpath)
73
73
self._files[relpath] = f.read()
76
76
"""See Transport.mkdir()."""
77
77
self._check_parent(relpath)
78
78
if relpath in self._dirs: