(lines)
| 876 | |
| 877 | |
| 878 | def find_last_indent(lines): |
| 879 | m = _indent_re.match(lines[-1]) |
| 880 | if not m: |
| 881 | return 0 |
| 882 | return len(m.group(0).replace('\t', ' '*4)) |
| 883 | |
| 884 | |
| 885 | class MaybeAsyncCompile(Compile): |
no test coverage detected
searching dependent graphs…