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

Lines Matching refs:tokentype

155         for tokentype, token, start, _end, _line in g:
156 if tokentype == DEDENT:
166 tokentype, meth_name, start = g.next()[0:3]
167 if tokentype != NAME:
185 tokentype, class_name, start = g.next()[0:3]
186 if tokentype != NAME:
189 tokentype, token, start = g.next()[0:3]
197 tokentype, token, start = g.next()[0:3]
226 elif tokentype in (NAME, OP) and level == 1:
304 tokentype, token = g.next()[0:2]
305 if tokentype != NAME and token != '*':
309 tokentype, token = g.next()[0:2]
312 tokentype, token = g.next()[0:2]
313 if tokentype != NAME: