(text)
| 147 | |
| 148 | _compress_re = re.compile(r"\s+") |
| 149 | def compress_text(text): return _compress_re.sub(" ", text.strip()) |
| 150 | |
| 151 | def normalize_line_endings(text): |
| 152 | return re.sub(r"(?:(?<!\r)\n)|(?:\r(?!\n))", "\r\n", text) |
no outgoing calls
no test coverage detected
searching dependent graphs…