gh-126835: Rename ast_opt.c to ast_preprocess.c and related stuff after moving const folding to the peephole optimizier (#131830)

This commit is contained in:
Yan Yanchii 2025-05-04 20:07:35 +02:00 committed by GitHub
parent 8eaaf16402
commit 0a1fedb70b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
14 changed files with 59 additions and 57 deletions

View file

@ -505,8 +505,8 @@
* [Python/ast.c](../Python/ast.c):
Used for validating the AST.
* [Python/ast_opt.c](../Python/ast_opt.c):
Optimizes the AST.
* [Python/ast_preprocess.c](../Python/ast_preprocess.c):
Preprocesses the AST before compiling.
* [Python/ast_unparse.c](../Python/ast_unparse.c):
Converts the AST expression node back into a string (for string annotations).