Skip to content

Commit aa8b58c

Browse files
authored
Remove old comment (GH-99489)
1 parent 7c57857 commit aa8b58c

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

Objects/frameobject.c

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -849,15 +849,6 @@ static PyGetSetDef frame_getsetlist[] = {
849849
{0}
850850
};
851851

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-
861852
static void
862853
frame_dealloc(PyFrameObject *f)
863854
{

0 commit comments

Comments
 (0)