(self, path)
| 151 | _HDR_MAGIC = b"TNTIDX\x00\x00" |
| 152 | |
| 153 | def __init__(self, path): |
| 154 | super().__init__() |
| 155 | self.path = path |
| 156 | self.data_file = None |
| 157 | self.read_index(path) |
| 158 | |
| 159 | def read_index(self, path): |
| 160 | with open(index_file_path(path), "rb") as f: |
no test coverage detected