summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrandt Bucher <brandtbucher@microsoft.com>2022-11-16 21:43:31 (GMT)
committerGitHub <noreply@github.com>2022-11-16 21:43:31 (GMT)
commitaa8b58cb33826bd2b1a1de631ebcd6a5353eecb5 (patch)
treeb8731b1f3023a9703cefa780436352fe123c0c54
parent7c57857340befcb90394bc347c904ca62049b684 (diff)
downloadcpython-aa8b58cb33826bd2b1a1de631ebcd6a5353eecb5.zip
cpython-aa8b58cb33826bd2b1a1de631ebcd6a5353eecb5.tar.gz
cpython-aa8b58cb33826bd2b1a1de631ebcd6a5353eecb5.tar.bz2
Remove old comment (GH-99489)
-rw-r--r--Objects/frameobject.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/Objects/frameobject.c b/Objects/frameobject.c
index 15e1928..74c26d8 100644
--- a/Objects/frameobject.c
+++ b/Objects/frameobject.c
@@ -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)
{