Home | History | Annotate | Download | only in python2.7

Lines Matching refs:charno

612         charno, lineno = 0, 0
616 output.append(string[charno:m.start()])
618 lineno += string.count('\n', charno, m.start())
630 # Update charno.
631 charno = m.end()
633 output.append(string[charno:])