Dump this license cache on disk at ``cache_file``.
(self, cache_file)
| 199 | return True |
| 200 | |
| 201 | def dump(self, cache_file): |
| 202 | """ |
| 203 | Dump this license cache on disk at ``cache_file``. |
| 204 | """ |
| 205 | with open(cache_file, 'wb') as fn: |
| 206 | pickle.dump(self, fn, protocol=PICKLE_PROTOCOL) |
| 207 | |
| 208 | |
| 209 | def build_index( |