(self, path: str, entry: QlPeCacheEntry)
| 67 | return None |
| 68 | |
| 69 | def save(self, path: str, entry: QlPeCacheEntry) -> None: |
| 70 | fcache = QlPeCache.cache_filename(path) |
| 71 | |
| 72 | # cache this dll file |
| 73 | with open(fcache, "wb") as fcache_file: |
| 74 | pickle.dump(entry, fcache_file) |
| 75 | |
| 76 | |
| 77 | class Process: |
no test coverage detected