(value: str)
| 364 | |
| 365 | |
| 366 | def _first_meaningful_line(value: str) -> str: |
| 367 | for line in value.splitlines(): |
| 368 | stripped = line.strip(" \t\r\n-") |
| 369 | if stripped: |
| 370 | return stripped |
| 371 | return "" |
| 372 | |
| 373 | |
| 374 | def _summarize_raw(value: str, limit: int) -> str: |
no outgoing calls
no test coverage detected