Searched refs:star_expr (Results 1 – 12 of 12) sorted by relevance
/external/python/cpython3/Lib/lib2to3/ |
D | Grammar.txt | 41 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/ |
D | Grammar.txt | 58 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/ |
D | Grammar | 44 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/ |
D | fix_intern.py | 33 if obj.type == self.syms.star_expr:
|
D | fix_reload.py | 30 if obj.type == self.syms.star_expr:
|
D | fix_apply.py | 40 if args.type == self.syms.star_expr:
|
/external/python/cpython3/Include/ |
D | graminit.h | 61 #define star_expr 314 macro
|
/external/python/cpython2/Lib/lib2to3/fixes/ |
D | fix_intern.py | 34 if obj.type == self.syms.star_expr:
|
D | fix_apply.py | 40 if args.type == self.syms.star_expr:
|
/external/python/cpython3/Lib/ |
D | symbol.py | 71 star_expr = 314 variable
|
/external/python/cpython3/Python/ |
D | ast.c | 1203 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/ |
D | CHANGELOG | 112 - Append the "var arg" type to a star in a star_expr.
|