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

Lines Matching refs:NL

34 __all__ += ["COMMENT", "tokenize", "generate_tokens", "NL", "untokenize"]
40 NL = N_TOKENS + 1
41 tok_name[NL] = 'NL'
201 if tok_type in (NEWLINE, NL):
213 if toknum in (NEWLINE, NL):
236 elif toknum in (NEWLINE, NL):
337 yield (NL, line[nl_pos:],
340 yield ((NL, COMMENT)[line[pos] == '#'], line[pos:],
373 yield (NL if parenlev > 0 else NEWLINE,