Home
last modified time | relevance | path

Searched refs:listmaker (Results 1 – 12 of 12) sorted by relevance

/external/python/cpython3/Lib/lib2to3/fixes/
Dfix_set_literal.py31 fake = pytree.Node(syms.listmaker, [single.clone()])
/external/python/cpython2/Lib/lib2to3/fixes/
Dfix_set_literal.py31 fake = pytree.Node(syms.listmaker, [single.clone()])
/external/python/cpython2/Include/
Dgraminit.h66 #define listmaker 319 macro
/external/python/cpython2/Lib/
Dsymbol.py76 listmaker = 319 variable
/external/python/cpython2/Grammar/
DGrammar104 '[' [listmaker] ']' |
108 listmaker: test ( list_for | (',' test)* [','] )
/external/python/cpython3/Lib/lib2to3/
DGrammar.txt110 '[' [listmaker] ']' |
114 listmaker: (test|star_expr) ( comp_for | (',' (test|star_expr))* [','] )
Dfixer_util.py105 inner = Node(syms.listmaker, [xp, Node(syms.comp_for, inner_args)])
/external/python/cpython2/Lib/lib2to3/
DGrammar.txt126 '[' [listmaker] ']' |
130 listmaker: (test|star_expr) ( comp_for | (',' (test|star_expr))* [','] )
Dfixer_util.py107 inner = Node(syms.listmaker, [xp, Node(syms.comp_for, inner_args)])
/external/antlr/runtime/JavaScript/tests/functional/
DPython.g315 | LBRACK (listmaker)? RBRACK
326 listmaker: test ( list_for | (options {greedy=true;}:COMMA test)* ) (COMMA)?
/external/python/cpython2/Python/
Dast.c585 TYPE(n) == listmaker || in seq_for_testlist()
1075 REQ(n, listmaker); in ast_for_listcomp()
1428 REQ(ch, listmaker); in ast_for_atom()
/external/python/cpython2/Modules/
Dparsermodule.c1011 VALIDATER(listmaker); VALIDATER(yield_stmt);