(self, name: str, content: str)
| 218 | self._tmpdir.cleanup() |
| 219 | |
| 220 | def _write(self, name: str, content: str) -> Path: |
| 221 | p = self.tmp / name |
| 222 | p.write_text(content, encoding="utf-8") |
| 223 | return p |
| 224 | |
| 225 | def _l1_key(self, p: Path) -> str: |
| 226 | """Return the L1 dict key for a path (always the resolved form).""" |
no outgoing calls
no test coverage detected