Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c57857 commit aa8b58cCopy full SHA for aa8b58c
1 file changed
Objects/frameobject.c
@@ -849,15 +849,6 @@ static PyGetSetDef frame_getsetlist[] = {
849
{0}
850
};
851
852
-/* Stack frames are allocated and deallocated at a considerable rate.
853
- In an attempt to improve the speed of function calls, we maintain
854
- a separate free list of stack frames (just like floats are
855
- allocated in a special way -- see floatobject.c). When a stack
856
- frame is on the free list, only the following members have a meaning:
857
- ob_type == &Frametype
858
- f_back next item on free list, or NULL
859
-*/
860
-
861
static void
862
frame_dealloc(PyFrameObject *f)
863
{
0 commit comments