(idx: int, root: Path, exts: frozenset = CPP_EXTS)
| 510 | _scan_res_c0: list = [None, None, None, None] # [src, tests, ex, ci] |
| 511 | |
| 512 | def _scan_c0(idx: int, root: Path, exts: frozenset = CPP_EXTS) -> None: |
| 513 | try: |
| 514 | _scan_res_c0[idx] = max_file_mtime(root, exts) |
| 515 | except KeyboardInterrupt: |
| 516 | _thread.interrupt_main() |
| 517 | except Exception: |
| 518 | _scan_res_c0[idx] = float("inf") |
| 519 | |
| 520 | _threads_c0 = [ |
| 521 | threading.Thread(target=_scan_c0, args=(0, Path("src")), daemon=True), |
nothing calls this directly
no test coverage detected