(path: Path)
| 393 | |
| 394 | |
| 395 | def removepyc(path: Path) -> None: |
| 396 | # XXX damn those pyc files |
| 397 | pyc = path.with_suffix(".pyc") |
| 398 | if pyc.exists(): |
| 399 | pyc.unlink() |
| 400 | c = path.parent / "__pycache__" |
| 401 | if c.exists(): |
| 402 | shutil.rmtree(c) |
no outgoing calls
no test coverage detected
searching dependent graphs…