Home
last modified time | relevance | path

Searched refs:CO_OPTIMIZED (Results 1 – 5 of 5) sorted by relevance

/third_party/python/Include/cpython/
Dcode.h67 #define CO_OPTIMIZED 0x0001 macro
/third_party/python/Objects/
Dframeobject.c1063 if (co->co_flags & CO_OPTIMIZED) { in PyFrame_FastToLocalsWithError()
1116 if (co->co_flags & CO_OPTIMIZED) { in PyFrame_LocalsToFast()
Dcall.c341 if (((PyCodeObject *)f->fc_code)->co_flags & CO_OPTIMIZED) { in _PyFunction_Vectorcall()
/third_party/python/Doc/library/
Dinspect.rst1427 .. data:: CO_OPTIMIZED
/third_party/python/Python/
Dcompile.c6810 flags |= CO_NEWLOCALS | CO_OPTIMIZED; in compute_code_flags()