(message: str)
| 1315 | |
| 1316 | |
| 1317 | def extract_possible_fnam_from_message(message: str) -> str: |
| 1318 | # This may return non-path things if there is some random colon on the line |
| 1319 | return message.split(":", 1)[0] |
| 1320 | |
| 1321 | |
| 1322 | def sort_messages_preserving_file_order( |
no test coverage detected
searching dependent graphs…