[3.13] gh-126105: Fix crash in ast module, when ._fields is deleted (GH-126115)#126130
Merged
Eclips4 merged 1 commit intopython:3.13from Oct 29, 2024
Merged
Conversation
pythonGH-126115) Previously, if the `ast.AST._fields` attribute was deleted, attempts to create a new `as`t node would crash due to the assumption that `_fields` always had a non-NULL value. Now it has been fixed by adding an extra check to ensure that `_fields` does not have a NULL value (this can happen when you manually remove `_fields` attribute). (cherry picked from commit b2eaa75) Co-authored-by: sobolevn <mail@sobolevn.me>
This was referenced Oct 29, 2024
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.
Previously, if the
ast.AST._fieldsattribute was deleted, attempts to create a newast node would crash due to the assumption that_fieldsalways had a non-NULL value. Now it has been fixed by adding an extra check to ensure that_fieldsdoes not have a NULL value (this can happen when you manually remove_fieldsattribute).(cherry picked from commit b2eaa75)
Co-authored-by: sobolevn mail@sobolevn.me