8000 GH-108035: Remove the `_PyCFrame` struct as it is no longer needed for performance. by markshannon · Pull Request #108036 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

GH-108035: Remove the _PyCFrame struct as it is no longer needed for performance. #108036

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 5 commits into from
Aug 17, 2023
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
Next Next commit
Fix up wonky news item
  • Loading branch information
markshannon committed Aug 11, 2023
commit 6c6414120b110802a01cccf621be10b3ddb21552
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Remove the `_PyCFrame`, moving the pointer to the current intepreter frame
back to the threadstate, as it was for 3.10 and earlier. The ``_PyCFrame`
exited as a performance optimization for tracing. Since PEP 669 has been
Remove the ``_PyCFrame`` struct, moving the pointer to the current intepreter frame
back to the threadstate, as it was for 3.10 and earlier. The ``_PyCFrame``
existed as a performance optimization for tracing. Since PEP 669 has been
implemented, this optimization no longer applies.
0