Get the next valid character at least on the next line
(lineno, col)
| 869 | return lineno, col |
| 870 | |
| 871 | def nextline(lineno, col): |
| 872 | """Get the next valid character at least on the next line""" |
| 873 | col = 0 |
| 874 | lineno += 1 |
| 875 | lineno, col = next_valid_char(lineno, col) |
| 876 | return lineno, col |
| 877 | |
| 878 | def increment_until(lineno, col, stop): |
| 879 | """Get the next valid non-"\\#" character that satisfies the `stop` predicate""" |
no test coverage detected