| commit | d27f8d2e07d31670af469ef387a37bc9e96ea8ad | [log] [tgz] |
|---|---|---|
| author | Victor Stinner <vstinner@python.org> | Wed Apr 07 21:34:22 2021 +0200 |
| committer | GitHub <noreply@github.com> | Wed Apr 07 21:34:22 2021 +0200 |
| tree | dbcf728b4340011a6c87ff75f59352599eaba6b8 | |
| parent | 58d72cab89cf9652acc0bf0007aa20b2bcc98499 [diff] |
bpo-43244: Rename pycore_ast.h functions to _PyAST_xxx() (GH-25252) Rename AST functions of pycore_ast.h to use the "_PyAST_" prefix. Remove macros creating aliases without prefix. For example, Module() becomes _PyAST_Module(). Update Grammar/python.gram to use _PyAST_xxx() functions.