(state: StateCore)
| 10 | |
| 11 | |
| 12 | def normalize(state: StateCore) -> None: |
| 13 | # Normalize newlines |
| 14 | string = NEWLINES_RE.sub("\n", state.src) |
| 15 | |
| 16 | # Replace NULL characters |
| 17 | string = NULL_RE.sub("\ufffd", string) |
| 18 | |
| 19 | state.src = string |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…