PEP 558: adjustments after updating implementation#2030
Merged
ncoghlan merged 4 commits intopython:masterfrom Jul 10, 2021
Merged
PEP 558: adjustments after updating implementation#2030ncoghlan merged 4 commits intopython:masterfrom
ncoghlan merged 4 commits intopython:masterfrom
Conversation
* Some fast locals proxy operations will implicitly update the underlying shared mapping on the frame * Anyone explicitly calling `LocalsToFast` is going to want the read/write proxy, not any of the read-only options (plus it's hard to fit an essay in an error message) * Remove lingering reference to the removed PyLocals_RefreshViews()
Contributor
Author
|
@njsmith @markshannon The reference implementation is largely back to only needing "turn the crank" type work to flesh out the Python and C APIs - the core technical issues (including harmonisation with the 3.11 frame implementation changes) have all been resolved. There are some performance problems with the proxy due to the need to support extra keys to keep My current plan is to post this version to python-dev next weekend, requesting pronouncement from Nathaniel. |
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.
pdbstores__return__and `exception`` entries onarbitrary frames, so that feature needs to be preserved
underlying shared mapping on the frame
LocalsToFastis going to want theread/write proxy, not any of the read-only options (plus it's
hard to fit an essay in an error message)
PyLocals_RefreshViews()