Searched refs:co_zombieframe (Results 1 – 3 of 3) sorted by relevance
476 if (co->co_zombieframe == NULL) in frame_dealloc()477 co->co_zombieframe = f; in frame_dealloc()667 if (code->co_zombieframe != NULL) { in PyFrame_New()668 f = code->co_zombieframe; in PyFrame_New()669 code->co_zombieframe = NULL; in PyFrame_New()
145 co->co_zombieframe = NULL; in PyCode_New()356 if (co->co_zombieframe != NULL) in code_dealloc()357 PyObject_GC_Del(co->co_zombieframe); in code_dealloc()
28 void *co_zombieframe; /* for optimization only (see frameobject.c) */ member