8000 GH-89480: Document motivation, design and implementation of 3.11 frame stack. by markshannon · Pull Request #32304 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

GH-89480: Document motivation, design and implementation of 3.11 frame stack. #32304

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Apr 11, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update Objects/frame_layout.md
Co-authored-by: da-woods <dw-git@d-woods.co.uk>
  • Loading branch information
markshannon and da-woods authored Apr 11, 2022
commit 14c15f58b490cb45019575945bf304476af1f48b
2 changes: 1 addition & 1 deletion Objects/frame_layout.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ The specials sections contains the following pointers:

The pointer to the function is not strictly required, but it is cheaper to
store a strong reference to the function and borrowed references to the globals
and builtins, that strong references to both globals and builtins.
and builtins, than strong references to both globals and builtins.

### Frame objects

Expand Down
0