https://github.com/python/cpython/commit/dc4a7077aca7f702e09c29433c20cf8bb9feff64 commit: dc4a7077aca7f702e09c29433c20cf8bb9feff64 branch: main author: Alper <alper_yo...@hotmail.com> committer: iritkatriel <1055913+iritkatr...@users.noreply.github.com> date: 2025-04-20T23:24:21+01:00 summary:
InternalDocs: Fix outdated struct references in frames.md (#132613) Docs: Fix outdated struct references in frames.md Co-authored-by: alperyoney <alperyo...@fb.com> files: M InternalDocs/frames.md diff --git a/InternalDocs/frames.md b/InternalDocs/frames.md index 2f0cc7967f33f7..804d7436018a10 100644 --- a/InternalDocs/frames.md +++ b/InternalDocs/frames.md @@ -11,7 +11,7 @@ of three conceptual sections: previous frame, etc. The definition of the `_PyInterpreterFrame` struct is in -[Include/internal/pycore_frame.h](../Include/internal/pycore_frame.h). +[Include/internal/pycore_interpframe_structs.h](../Include/internal/pycore_interpframe_structs.h). # Allocation @@ -21,8 +21,8 @@ of reference, most frames are allocated contiguously in a per-thread stack (see `_PyThreadState_PushFrame` in [Python/pystate.c](../Python/pystate.c)). Frames of generators and coroutines are embedded in the generator and coroutine -objects, so are not allocated in the per-thread stack. See `PyGenObject` in -[Include/internal/pycore_genobject.h](../Include/internal/pycore_genobject.h). +objects, so are not allocated in the per-thread stack. See `_PyGenObject` in +[Include/internal/pycore_interpframe_structs.h](../Include/internal/pycore_interpframe_structs.h). ## Layout _______________________________________________ Python-checkins mailing list -- python-checkins@python.org To unsubscribe send an email to python-checkins-le...@python.org https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: arch...@mail-archive.com