Searched refs:or_test (Results 1 – 16 of 16) sorted by relevance
/external/python/cpython2/Grammar/ |
D | Grammar | 86 old_test: or_test | old_lambdef 89 test: or_test ['if' or_test 'else' test] | lambdef 90 or_test: and_test ('or' and_test)* 134 comp_for: 'for' exprlist 'in' or_test [comp_iter]
|
/external/python/cpython3/Grammar/ |
D | Grammar | 86 test: or_test ['if' or_test 'else' test] | lambdef 87 test_nocond: or_test | lambdef_nocond 90 or_test: and_test ('or' and_test)* 142 sync_comp_for: 'for' exprlist 'in' or_test [comp_iter]
|
/external/python/cpython3/Lib/lib2to3/ |
D | Grammar.txt | 91 old_test: or_test | old_lambdef 94 test: or_test ['if' or_test 'else' test] | lambdef 95 or_test: and_test ('or' and_test)*
|
/external/python/cpython2/Lib/lib2to3/ |
D | Grammar.txt | 107 old_test: or_test | old_lambdef 110 test: or_test ['if' or_test 'else' test] | lambdef 111 or_test: and_test ('or' and_test)*
|
/external/python/cpython3/Include/ |
D | graminit.h | 56 #define or_test 309 macro
|
/external/python/cpython2/Include/ |
D | graminit.h | 52 #define or_test 305 macro
|
/external/python/cpython2/Lib/ |
D | symbol.py | 62 or_test = 305 variable
|
/external/python/cpython3/Lib/ |
D | symbol.py | 66 or_test = 309 variable
|
/external/python/cpython3/Lib/lib2to3/fixes/ |
D | fix_has_key.py | 88 syms.or_test, syms.test, syms.lambdef, syms.argument):
|
/external/python/cpython2/Lib/lib2to3/fixes/ |
D | fix_has_key.py | 89 syms.or_test, syms.test, syms.lambdef, syms.argument):
|
/external/python/cpython2/Lib/compiler/ |
D | transformer.py | 606 def or_test(self, nodelist): member in Transformer 611 old_test = or_test 1430 symbol.or_test, 1507 symbol.or_test,
|
/external/python/cpython2/Doc/reference/ |
D | expressions.rst | 187 old_expression: `or_test` | `old_lambda_expr` 225 comp_for: "for" `target_list` "in" `or_test` [`comp_iter`] 1319 or_test: `and_test` | `or_test` "or" `and_test` 1364 conditional_expression: `or_test` ["if" `or_test` "else" `expression`]
|
/external/python/cpython3/Doc/reference/ |
D | expressions.rst | 183 comp_for: ["async"] "for" `target_list` "in" `or_test` [`comp_iter`] 1621 or_test: `and_test` | `or_test` "or" `and_test` 1668 conditional_expression: `or_test` ["if" `or_test` "else" `expression`] 1670 expression_nocond: `or_test` | `lambda_expr_nocond`
|
/external/python/cpython2/Modules/ |
D | parsermodule.c | 1015 VALIDATER(yield_or_testlist); VALIDATER(or_test); 2250 int res = validate_ntype(tree, or_test) && is_odd(nch); in validate_or_test()
|
/external/python/cpython2/Python/ |
D | ast.c | 1862 case or_test: in ast_for_expr()
|
/external/python/cpython3/Python/ |
D | ast.c | 2568 case or_test: in ast_for_expr()
|