bpo-46850: Move _PyInterpreterState_SetEvalFrameFunc() to internal C API#32054
Merged
vstinner merged 1 commit intopython:mainfrom Apr 1, 2022
vstinner:eval_func
Merged
bpo-46850: Move _PyInterpreterState_SetEvalFrameFunc() to internal C API#32054vstinner merged 1 commit intopython:mainfrom vstinner:eval_func
vstinner merged 1 commit intopython:mainfrom
vstinner:eval_func
Conversation
Member
Author
|
See also PR #32052 "Remove _PyEval_EvalFrameDefault() function". |
Member
Author
|
According to a code search on top 5000 PyPI project (2022-01-26), two debugger projects are affected, the same projects than the projects affected by PR #32052. debugpy-1.5.1.zip: ptvsd-4.3.2.zip: |
|
This (and PEP-523) is used in TorchDynamo: We (the PyTorch team) are planning to include TorchDynamo as part of PyTorch 2.0. |
Member
Author
|
PR rebased on top of #32052 that I plan to merge first. |
Move the private _PyFrameEvalFunction type, and private _PyInterpreterState_GetEvalFrameFunc() and _PyInterpreterState_SetEvalFrameFunc() functions to the internal C API. The _PyFrameEvalFunction callback function type now uses the _PyInterpreterFrame type which is part of the internal C API. Update the _PyFrameEvalFunction documentation.
|
I rely on this API and (other PEP 523 APIs as well) for https://pythonspeed.com/sciagraph/, so would like it or some equivalent to continue to exist. |
Member
Author
|
This change was reverted: #32343 |
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 _PyFrameEvalFunction type, and private
_PyInterpreterState_GetEvalFrameFunc() and
_PyInterpreterState_SetEvalFrameFunc() functions to the internal C
API. The _PyFrameEvalFunction callback function type now uses the
_PyInterpreterFrame type which is part of the internal C API.
Update the _PyFrameEvalFunction documentation.
https://bugs.python.org/issue46850