Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/lib2to3/
DGrammar.txt41 testlist_star_expr: (test|star_expr) (',' (test|star_expr))* [',']
100 star_expr: '*' expr
114 listmaker: (test|star_expr) ( comp_for | (',' (test|star_expr))* [','] )
115 testlist_gexp: (test|star_expr) ( comp_for | (',' (test|star_expr))* [','] )
121 exprlist: (expr|star_expr) (',' (expr|star_expr))* [',']
125 ((test | star_expr)
126 (comp_for | (',' (test | star_expr))* [','])) )
134 # to our LL(1) parser. Even though 'test' includes '*expr' in star_expr,
142 star_expr )
/external/python/cpython2/Lib/lib2to3/
DGrammar.txt58 testlist_star_expr: (test|star_expr) (',' (test|star_expr))* [',']
116 star_expr: '*' expr
130 listmaker: (test|star_expr) ( comp_for | (',' (test|star_expr))* [','] )
131 testlist_gexp: (test|star_expr) ( comp_for | (',' (test|star_expr))* [','] )
137 exprlist: (expr|star_expr) (',' (expr|star_expr))* [',']
141 ((test | star_expr)
142 (comp_for | (',' (test | star_expr))* [','])) )
150 # to our LL(1) parser. Even though 'test' includes '*expr' in star_expr,
158 star_expr )
/external/python/cpython3/Grammar/
DGrammar44 testlist_star_expr: (test|star_expr) (',' (test|star_expr))* [',']
97 star_expr: '*' expr
111 testlist_comp: (test|star_expr) ( comp_for | (',' (test|star_expr))* [','] )
116 exprlist: (expr|star_expr) (',' (expr|star_expr))* [',']
120 ((test | star_expr)
121 (comp_for | (',' (test | star_expr))* [','])) )
131 # to our LL(1) parser. Even though 'test' includes '*expr' in star_expr,
/external/python/cpython3/Lib/lib2to3/fixes/
Dfix_intern.py33 if obj.type == self.syms.star_expr:
Dfix_reload.py30 if obj.type == self.syms.star_expr:
Dfix_apply.py40 if args.type == self.syms.star_expr:
/external/python/cpython3/Include/
Dgraminit.h61 #define star_expr 314 macro
/external/python/cpython2/Lib/lib2to3/fixes/
Dfix_intern.py34 if obj.type == self.syms.star_expr:
Dfix_apply.py40 if args.type == self.syms.star_expr:
/external/python/cpython3/Lib/
Dsymbol.py71 star_expr = 314 variable
/external/python/cpython3/Python/
Dast.c1203 assert(TYPE(ch) == test || TYPE(ch) == test_nocond || TYPE(ch) == star_expr); in seq_for_testlist()
2519 REQ(n, star_expr); in ast_for_starred()
2643 case star_expr: in ast_for_expr()
/external/yapf/
DCHANGELOG112 - Append the "var arg" type to a star in a star_expr.