]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Remove old comment (GH-99489)
authorBrandt Bucher <brandtbucher@microsoft.com>
Wed, 16 Nov 2022 21:43:31 +0000 (13:43 -0800)
committerGitHub <noreply@github.com>
Wed, 16 Nov 2022 21:43:31 +0000 (13:43 -0800)
Objects/frameobject.c

index 15e1928a547f8a2d46f8648c6faabf1b20f9df3f..74c26d8d4d96a5e692e0129cb0aa1b5974f85039 100644 (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)
 {