Home
last modified time | relevance | path

Searched refs:co_zombieframe (Results 1 – 3 of 3) sorted by relevance

/third_party/python/Include/cpython/
Dcode.h43 void *co_zombieframe; /* for optimization only (see frameobject.c) */ member
/third_party/python/Objects/
Dframeobject.c595 if (co->co_zombieframe == NULL) { in frame_dealloc()
596 co->co_zombieframe = f; in frame_dealloc()
773 f = code->co_zombieframe; in frame_alloc()
775 code->co_zombieframe = NULL; in frame_alloc()
Dcodeobject.c255 co->co_zombieframe = NULL; in PyCode_NewWithPosOnlyArgs()
583 if (co->co_zombieframe != NULL) in code_dealloc()
584 PyObject_GC_Del(co->co_zombieframe); in code_dealloc()