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