bpo-46850: Move _PyEval_EvalFrameDefault() to internal C API#32052
Merged
vstinner merged 1 commit intopython:mainfrom Apr 1, 2022
vstinner:eval_frame_default
Merged
bpo-46850: Move _PyEval_EvalFrameDefault() to internal C API#32052vstinner merged 1 commit intopython:mainfrom vstinner:eval_frame_default
vstinner merged 1 commit intopython:mainfrom
vstinner:eval_frame_default
Conversation
Member
Author
|
According to a code search on top 5000 PyPI projects (2022-01-26), this PR only impact two projects (debuggers). debugpy-1.5.1.zip: ptvsd-4.3.2.zip: It seems like it doesn't support Python 3.9 which added the tstate parameter to |
Member
Author
|
See also the PR #32054 "Remove _PyInterpreterState_SetEvalFrameFunc()". |
|
This (and PEP-523) is used in TorchDynamo: We (the PyTorch team) are planning to include TorchDynamo as part of PyTorch 2.0. |
Move the private undocumented _PyEval_EvalFrameDefault() function to the internal C API. The function now uses the _PyInterpreterFrame type which is part of the internal C API.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Move the private undocumented _PyEval_EvalFrameDefault() function to
the internal C API. The function now uses the _PyInterpreterFrame
type which is part of the internal C API.
https://bugs.python.org/issue46850