Searched refs:CO_NOFREE (Results 1 – 11 of 11) sorted by relevance
44 #define CO_NOFREE 0x0040 macro
65 #define CO_NOFREE 0x0040 macro
183 self.assertFalse(function.__code__.co_flags & inspect.CO_NOFREE,
136 flags |= CO_NOFREE; in PyCode_New()138 flags &= ~CO_NOFREE; in PyCode_New()
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()
46 CO_NESTED, CO_GENERATOR, CO_NOFREE = 0x10, 0x20, 0x40 variable
7 co_flags.CO_NOFREE is now always set correctly by the code object
1332 .. data:: CO_NOFREE
3797 flags |= CO_NOFREE; in compute_code_flags()
4432 co->co_flags == (CO_OPTIMIZED | CO_NEWLOCALS | CO_NOFREE)) { in fast_function()