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/cpython/
Dcode.h78 #define CO_NOFREE 0x0040 macro
/external/python/cpython3/Lib/test/
Dtest_code.py203 self.assertFalse(function.__code__.co_flags & inspect.CO_NOFREE,
/external/python/cpython3/Objects/
Dcodeobject.c172 flags |= CO_NOFREE; in PyCode_NewWithPosOnlyArgs()
174 flags &= ~CO_NOFREE; in PyCode_NewWithPosOnlyArgs()
Dcall.c363 (co->co_flags & ~PyCF_MASK) == (CO_OPTIMIZED | CO_NEWLOCALS | CO_NOFREE)) in _PyFunction_Vectorcall()
/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.rst1372 .. 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()