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

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)
275 column where the token begins in the source; a 2-tuple (erow, ecol) of
276 ints specifying the row and column where the token ends in the source;
317 column = 0
320 column += 1
322 column = (column//tabsize + 1)*tabsize
324 column = 0
344 if column > indents[-1]: # count indents or dedents
345 indents.append(column)
347 while column < indents[-1]:
348 if column not in indents: