Searched refs:CO_NEWLOCALS (Results 1 – 13 of 13) sorted by relevance
/external/python/cpython2/Lib/compiler/ |
D | consts.py | 14 CO_NEWLOCALS = 0x0002 variable
|
D | pyassem.py | 9 import CO_OPTIMIZED, CO_NEWLOCALS, CO_VARARGS, CO_VARKEYWORDS 266 self.flags = CO_OPTIMIZED | CO_NEWLOCALS 532 if (self.flags & CO_NEWLOCALS) == 0:
|
D | pycodegen.py | 12 from compiler.consts import (CO_VARARGS, CO_VARKEYWORDS, CO_NEWLOCALS, 1449 self.graph.setFlag(CO_NEWLOCALS)
|
/external/python/cpython2/Include/ |
D | code.h | 34 #define CO_NEWLOCALS 0x0002 macro
|
/external/python/cpython3/Include/ |
D | code.h | 55 #define CO_NEWLOCALS 0x0002 macro
|
/external/python/cpython3/Objects/ |
D | frameobject.c | 753 if ((code->co_flags & (CO_NEWLOCALS | CO_OPTIMIZED)) == in _PyFrame_New_NoTrack() 754 (CO_NEWLOCALS | CO_OPTIMIZED)) in _PyFrame_New_NoTrack() 756 else if (code->co_flags & CO_NEWLOCALS) { in _PyFrame_New_NoTrack()
|
D | call.c | 318 (co->co_flags & ~PyCF_MASK) == (CO_OPTIMIZED | CO_NEWLOCALS | CO_NOFREE)) in _PyFunction_FastCallDict() 405 (co->co_flags & ~PyCF_MASK) == (CO_OPTIMIZED | CO_NEWLOCALS | CO_NOFREE)) in _PyFunction_FastCallKeywords()
|
/external/python/cpython2/Objects/ |
D | frameobject.c | 755 if ((code->co_flags & (CO_NEWLOCALS | CO_OPTIMIZED)) == in PyFrame_New() 756 (CO_NEWLOCALS | CO_OPTIMIZED)) in PyFrame_New() 758 else if (code->co_flags & CO_NEWLOCALS) { in PyFrame_New()
|
/external/python/cpython2/Lib/ |
D | inspect.py | 45 CO_OPTIMIZED, CO_NEWLOCALS, CO_VARARGS, CO_VARKEYWORDS = 0x1, 0x2, 0x4, 0x8 variable
|
/external/python/cpython3/Doc/library/ |
D | inspect.rst | 1310 .. data:: CO_NEWLOCALS
|
/external/python/cpython2/Python/ |
D | compile.c | 3772 flags |= CO_NEWLOCALS; in compute_code_flags()
|
D | ceval.c | 4432 co->co_flags == (CO_OPTIMIZED | CO_NEWLOCALS | CO_NOFREE)) { in fast_function()
|
/external/python/cpython3/Python/ |
D | compile.c | 5346 flags |= CO_NEWLOCALS | CO_OPTIMIZED; in compute_code_flags()
|