Home
last modified time | relevance | path

Searched refs:star_expr (Results 1 – 5 of 5) sorted by relevance

/third_party/python/Lib/lib2to3/
DGrammar.txt81 testlist_star_expr: (test|star_expr) (',' (test|star_expr))* [',']
141 star_expr: '*' expr
155 listmaker: (namedexpr_test|star_expr) ( comp_for | (',' (namedexpr_test|star_expr))* [','] )
156 testlist_gexp: (namedexpr_test|star_expr) ( comp_for | (',' (namedexpr_test|star_expr))* [','] )
162 exprlist: (expr|star_expr) (',' (expr|star_expr))* [',']
166 ((test | star_expr)
167 (comp_for | (',' (test | star_expr))* [','])) )
175 # to our LL(1) parser. Even though 'test' includes '*expr' in star_expr,
/third_party/python/Grammar/
DGrammar88 testlist_star_expr: (test|star_expr) (',' (test|star_expr))* [',']
142 star_expr: '*' expr
156 testlist_comp: (namedexpr_test|star_expr) ( comp_for | (',' (namedexpr_test|star_expr))* [','] )
161 exprlist: (expr|star_expr) (',' (expr|star_expr))* [',']
165 ((test | star_expr)
166 (comp_for | (',' (test | star_expr))* [','])) )
176 # to our LL(1) parser. Even though 'test' includes '*expr' in star_expr,
/third_party/python/Include/
Dgraminit.h62 #define star_expr 315 macro
/third_party/python/Lib/
Dsymbol.py83 star_expr = 315 variable
/third_party/python/Python/
Dast.c1292 …assert(TYPE(ch) == test || TYPE(ch) == test_nocond || TYPE(ch) == star_expr || TYPE(ch) == namedex… in seq_for_testlist()
2742 REQ(n, star_expr); in ast_for_starred()
2874 case star_expr: in ast_for_expr()