Open the cache file making sure the directory is created.
(self, fn, *args)
| 271 | pass |
| 272 | |
| 273 | def open(self, fn, *args): |
| 274 | """ |
| 275 | Open the cache file making sure the directory is created. |
| 276 | """ |
| 277 | self.mktmp() |
| 278 | return open(fn, *args) |
| 279 | |
| 280 | def checkversion(self): |
| 281 | path = os.path.join(self.location, 'version') |
no test coverage detected