(p: str)
| 340 | # to contain ``'`` in practice, but defensive escaping costs nothing |
| 341 | # and avoids a hard-to-debug native-file parse error. |
| 342 | def _q(p: str) -> str: |
| 343 | return p.replace("'", "\\'") |
| 344 | |
| 345 | return FastNativeEntries( |
| 346 | cc=f"['{_q(ctc_c)}']", |
no outgoing calls
no test coverage detected