(self, filepath)
| 59 | """Raw hard disks storage backend.""" |
| 60 | |
| 61 | def get(self, filepath): |
| 62 | filepath = str(filepath) |
| 63 | with open(filepath, 'rb') as f: |
| 64 | value_buf = f.read() |
| 65 | return value_buf |
| 66 | |
| 67 | def get_text(self, filepath): |
| 68 | filepath = str(filepath) |
nothing calls this directly
no outgoing calls
no test coverage detected