Home
last modified time | relevance | path

Searched refs:CO_NEWLOCALS (Results 1 – 13 of 13) sorted by relevance

/external/python/cpython2/Lib/compiler/
Dconsts.py14 CO_NEWLOCALS = 0x0002 variable
Dpyassem.py9 import CO_OPTIMIZED, CO_NEWLOCALS, CO_VARARGS, CO_VARKEYWORDS
266 self.flags = CO_OPTIMIZED | CO_NEWLOCALS
532 if (self.flags & CO_NEWLOCALS) == 0:
Dpycodegen.py12 from compiler.consts import (CO_VARARGS, CO_VARKEYWORDS, CO_NEWLOCALS,
1449 self.graph.setFlag(CO_NEWLOCALS)
/external/python/cpython2/Include/
Dcode.h34 #define CO_NEWLOCALS 0x0002 macro
/external/python/cpython3/Include/
Dcode.h55 #define CO_NEWLOCALS 0x0002 macro
/external/python/cpython3/Objects/
Dframeobject.c753 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()
Dcall.c318 (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/
Dframeobject.c755 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/
Dinspect.py45 CO_OPTIMIZED, CO_NEWLOCALS, CO_VARARGS, CO_VARKEYWORDS = 0x1, 0x2, 0x4, 0x8 variable
/external/python/cpython3/Doc/library/
Dinspect.rst1310 .. data:: CO_NEWLOCALS
/external/python/cpython2/Python/
Dcompile.c3772 flags |= CO_NEWLOCALS; in compute_code_flags()
Dceval.c4432 co->co_flags == (CO_OPTIMIZED | CO_NEWLOCALS | CO_NOFREE)) { in fast_function()
/external/python/cpython3/Python/
Dcompile.c5346 flags |= CO_NEWLOCALS | CO_OPTIMIZED; in compute_code_flags()