(text)
| 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) |
| 153 | |
| 154 | def _quote_plus(value): |
| 155 | if not isinstance(value, six.string_types): |
no outgoing calls
no test coverage detected
searching dependent graphs…