Home | History | Annotate | Download | only in Lib

Lines Matching refs:column

13     the starting (row, column) indices of the token (a 2-tuple of ints)
14 the ending (row, column) indices of the token (a 2-tuple of ints)
475 column where the token begins in the source; a 2-tuple (erow, ecol) of
476 ints specifying the row and column where the token ends in the source;
544 column = 0
547 column += 1
549 column = (column//tabsize + 1)*tabsize
551 column = 0
571 if column > indents[-1]: # count indents or dedents
572 indents.append(column)
574 while column < indents[-1]:
575 if column not in indents:
777 line, column = err.args[1][1:3]
778 error(err.args[0], filename, (line, column))
780 line, column = err.args[1]
781 error(err.args[0], filename, (line, column))