Return a file-like representation or raise a KeyError.
(self, key)
| 99 | raise NotImplementedError('Method must be implemented by subclass') |
| 100 | |
| 101 | def get_file(self, key): |
| 102 | """Return a file-like representation or raise a KeyError.""" |
| 103 | raise NotImplementedError('Method must be implemented by subclass') |
| 104 | |
| 105 | def iterkeys(self): |
| 106 | """Return an iterator over keys.""" |
no outgoing calls