Dump this license cache on disk at ``cache_file``.
(self, cache_file)
| 137 | raise |
| 138 | |
| 139 | def dump(self, cache_file): |
| 140 | """ |
| 141 | Dump this license cache on disk at ``cache_file``. |
| 142 | """ |
| 143 | with open(cache_file, 'wb') as fn: |
| 144 | pickle.dump(self, fn, protocol=PICKLE_PROTOCOL) |
| 145 | |
| 146 | |
| 147 | def get_prematchers_from_glob_pattern(pattern): |
no outgoing calls
no test coverage detected