Home
last modified time | relevance | path

Searched refs:DEF_FREE_CLASS (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython2/Include/
Dsymtable.h68 #define DEF_FREE_CLASS 2<<4 /* free variable from class's method */ macro
/external/python/cpython3/Include/
Dsymtable.h92 #define DEF_FREE_CLASS 2<<5 /* free variable from class's method */ macro
/external/python/cpython2/Modules/
Dsymtablemodule.c66 PyModule_AddIntConstant(m, "DEF_FREE_CLASS", DEF_FREE_CLASS); in init_symtable()
/external/python/cpython3/Modules/
Dsymtablemodule.c90 PyModule_AddIntMacro(m, DEF_FREE_CLASS); in PyInit__symtable()
/external/python/cpython2/Python/
Dsymtable.c571 long i = PyInt_AS_LONG(o) | DEF_FREE_CLASS; in update_symbols()
Dcompile.c491 u->u_freevars = dictbytype(u->u_ste->ste_symbols, FREE, DEF_FREE_CLASS, in compiler_enter_scope()
/external/python/cpython3/Python/
Dsymtable.c646 long flags = PyLong_AS_LONG(v) | DEF_FREE_CLASS; in update_symbols()
Dcompile.c594 u->u_freevars = dictbytype(u->u_ste->ste_symbols, FREE, DEF_FREE_CLASS, in compiler_enter_scope()