()
| 504 | |
| 505 | |
| 506 | def collect_runtime_summary() -> dict[str, str]: |
| 507 | return { |
| 508 | "python": sys.version.replace("\n", " "), |
| 509 | "platform": platform.platform(), |
| 510 | "executable": _safe_tail(sys.executable), |
| 511 | } |
| 512 | |
| 513 | |
| 514 | def _section_has_useful_values(items: dict[str, str]) -> bool: |
no test coverage detected