Home
last modified time | relevance | path

Searched refs:async_def_indent (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython3/Lib/lib2to3/pgen2/
Dtokenize.py359 async_def_indent = 0
429 if async_def and async_def_indent >= indents[-1]:
432 async_def_indent = 0
436 if async_def and async_def_nl and async_def_indent >= indents[-1]:
439 async_def_indent = 0
521 async_def_indent = indents[-1]
/external/python/cpython3/Parser/
Dtokenizer.h71 int async_def_indent; /* Indentation level of the outermost 'async def'. */ member
Dtokenizer.c87 tok->async_def_indent = 0; in tok_new()
1300 && tok->async_def_indent >= tok->indent) in tok_get()
1303 tok->async_def_indent = 0; in tok_get()
1462 tok->async_def_indent = tok->indent; in tok_get()