Get the next valid character at least on the next line
(lineno, col)
| 885 | return lineno, col |
| 886 | |
| 887 | def nextline(lineno, col): |
| 888 | """Get the next valid character at least on the next line""" |
| 889 | col = 0 |
| 890 | lineno += 1 |
| 891 | lineno, col = next_valid_char(lineno, col) |
| 892 | return lineno, col |
| 893 | |
| 894 | def increment_until(lineno, col, stop): |
| 895 | """Get the next valid non-"\\#" character that satisfies the `stop` predicate""" |
no test coverage detected
searching dependent graphs…