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.
New fields were added to
_Py_DebugOffsets
in 3.13rc2 which make make us unable to recognize the interpreter's data structures in memory. This PR contains two commits: one to update our static offsets to account for the newly added fields so that we can correctly attach to 3.13rc2 processes (at the cost that we're no longer able to attach to 3.13rc1 or earlier), and one to begin utilizing the new fields that were added to the offsets to remove assumptions that we were making in PyStack in favor of known correct answers from the interpreter.Marking as draft for now because this will fail until 3.13rc2 is available.