Home | History | Annotate | Download | only in Lib

Lines Matching refs:column

10     the starting (row, column) indices of the token (a 2-tuple of ints)
11 the ending (row, column) indices of the token (a 2-tuple of ints)
298 column where the token begins in the source; a 2-tuple (erow, ecol) of
299 ints specifying the row and column where the token ends in the source;
340 column = 0
343 column += 1
345 column = (column//tabsize + 1)*tabsize
347 column = 0
367 if column > indents[-1]: # count indents or dedents
368 indents.append(column)
370 while column < indents[-1]:
371 if column not in indents: