MCPcopy Index your code
hub / github.com/python/cpython / nextline

Function nextline

Lib/traceback.py:887–892  ·  view source on GitHub ↗

Get the next valid character at least on the next line

(lineno, col)

Source from the content-addressed store, hash-verified

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"""

Callers 1

increment_untilFunction · 0.85

Calls 1

next_valid_charFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…