Home
last modified time | relevance | path

Searched refs:CO_NOFREE (Results 1 – 11 of 11) sorted by relevance

/external/python/cpython2/Include/
Dcode.h44 #define CO_NOFREE 0x0040 macro
/external/python/cpython3/Include/
Dcode.h65 #define CO_NOFREE 0x0040 macro
/external/python/cpython3/Lib/test/
Dtest_code.py183 self.assertFalse(function.__code__.co_flags & inspect.CO_NOFREE,
/external/python/cpython3/Objects/
Dcodeobject.c136 flags |= CO_NOFREE; in PyCode_New()
138 flags &= ~CO_NOFREE; in PyCode_New()
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/Lib/
Dinspect.py46 CO_NESTED, CO_GENERATOR, CO_NOFREE = 0x10, 0x20, 0x40 variable
/external/python/cpython3/Misc/NEWS.d/
D3.6.4rc1.rst7 co_flags.CO_NOFREE is now always set correctly by the code object
D3.7.0a3.rst7 co_flags.CO_NOFREE is now always set correctly by the code object
/external/python/cpython3/Doc/library/
Dinspect.rst1332 .. data:: CO_NOFREE
/external/python/cpython2/Python/
Dcompile.c3797 flags |= CO_NOFREE; in compute_code_flags()
Dceval.c4432 co->co_flags == (CO_OPTIMIZED | CO_NEWLOCALS | CO_NOFREE)) { in fast_function()