Home
last modified time | relevance | path

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

/external/python/cpython2/Include/
Dgraminit.h50 #define old_lambdef 303 macro
/external/python/cpython2/Lib/
Dsymbol.py60 old_lambdef = 303 variable
/external/python/cpython2/Grammar/
DGrammar86 old_test: or_test | old_lambdef
87 old_lambdef: 'lambda' [varargslist] ':' old_test
/external/python/cpython2/Lib/lib2to3/
DGrammar.txt107 old_test: or_test | old_lambdef
108 old_lambdef: 'lambda' [varargslist] ':' old_test
/external/python/cpython2/Modules/
Dparsermodule.c974 VALIDATER(old_test); VALIDATER(old_lambdef);
2196 if (res && (TYPE(CHILD(tree, 0)) == old_lambdef)) in validate_old_test()
2749 int res = (validate_ntype(tree, old_lambdef) in validate_old_lambdef()
/external/python/cpython2/Lib/compiler/
Dtransformer.py292 old_lambdef = lambdef variable in Transformer
/external/python/cpython2/Python/
Dast.c1857 TYPE(CHILD(n, 0)) == old_lambdef) in ast_for_expr()