Remove old comment (GH-99489)

This commit is contained in:
Brandt Bucher 2022-11-16 13:43:31 -08:00 committed by GitHub
parent 7c57857340
commit aa8b58cb33
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 9 deletions

View File

@ -849,15 +849,6 @@ static PyGetSetDef frame_getsetlist[] = {
{0}
};
/* Stack frames are allocated and deallocated at a considerable rate.
In an attempt to improve the speed of function calls, we maintain
a separate free list of stack frames (just like floats are
allocated in a special way -- see floatobject.c). When a stack
frame is on the free list, only the following members have a meaning:
ob_type == &Frametype
f_back next item on free list, or NULL
*/
static void
frame_dealloc(PyFrameObject *f)
{