Home
last modified time | relevance | path

Searched refs:old_test (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython2/Grammar/
DGrammar85 testlist_safe: old_test [(',' old_test)+ [',']]
86 old_test: or_test | old_lambdef
87 old_lambdef: 'lambda' [varargslist] ':' old_test
131 list_if: 'if' old_test [list_iter]
135 comp_if: 'if' old_test [comp_iter]
/external/python/cpython2/Lib/lib2to3/
DGrammar.txt106 testlist_safe: old_test [(',' old_test)+ [',']]
107 old_test: or_test | old_lambdef
108 old_lambdef: 'lambda' [varargslist] ':' old_test
162 comp_if: 'if' old_test [comp_iter]
/external/python/cpython2/Include/
Dgraminit.h49 #define old_test 302 macro
/external/python/cpython2/Lib/
Dsymbol.py59 old_test = 302 variable
/external/python/cpython2/Modules/
Dparsermodule.c974 VALIDATER(old_test); VALIDATER(old_lambdef);
2194 int res = validate_ntype(tree, old_test) && (nch == 1); in validate_old_test()
/external/python/cpython2/Python/
Dast.c595 assert(TYPE(CHILD(n, i)) == test || TYPE(CHILD(n, i)) == old_test); in seq_for_testlist()
1855 case old_test: in ast_for_expr()
/external/python/cpython2/Lib/compiler/
Dtransformer.py611 old_test = or_test variable in Transformer