This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Extend the AST Validator to validate all identifiers
Type: Stage: patch review
Components: Versions:
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: BTaskaya, pablogsal, serhiy.storchaka
Priority: normal Keywords: patch

Created on 2020-06-23 10:44 by BTaskaya, last changed 2022-04-11 14:59 by admin.

Pull Requests
URL Status Linked Edit
PR 21069 open BTaskaya, 2020-06-23 11:02
Messages (1)
msg372154 - (view) Author: Batuhan Taskaya (BTaskaya) * (Python committer) Date: 2020-06-23 10:44
These identifiers include;
- 'name' of FunctionDef/ClassDef/AsyncFunctionDef/ExceptHandler
- 'name' and 'asname' of import aliases within ImportFrom and Import nodes.

Any of these cases will crash the interpreter (abort) when used with a constant (such as True). This is a follow-up issue on 40870
History
Date User Action Args
2022-04-11 14:59:32adminsetgithub: 85260
2020-06-23 11:02:24BTaskayasetkeywords: + patch
stage: patch review
pull_requests: + pull_request20238
2020-06-23 11:01:11BTaskayasetnosy: + serhiy.storchaka, pablogsal
2020-06-23 10:44:57BTaskayacreate