Return a file-like representation or raise a KeyError.
(self, key)
| 398 | return f.read().replace(linesep, b'\n') |
| 399 | |
| 400 | def get_file(self, key): |
| 401 | """Return a file-like representation or raise a KeyError.""" |
| 402 | f = open(os.path.join(self._path, self._lookup(key)), 'rb') |
| 403 | return _ProxyFile(f) |
| 404 | |
| 405 | def get_info(self, key): |
| 406 | """Get the keyed message's "info" as a string.""" |
nothing calls this directly
no test coverage detected