(string)
| 698 | |
| 699 | |
| 700 | def _remove_first_line_indent(string): |
| 701 | indent = len(re.match(r'^\s*', string).group(0)) |
| 702 | return '\n'.join([line[indent:] for line in string.split('\n')]) |
| 703 | |
| 704 | |
| 705 | PAREN_NUMBER_RE = re.compile(r'^\(([0-9.e-]+)\)') |
no test coverage detected