diff options
author | Victor Stinner <vstinner@python.org> | 2021-03-17 22:50:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-17 22:50:50 (GMT) |
commit | 526fdeb2278b61653df704d7cfcaedde504dee48 (patch) | |
tree | 8c17493b7a55c2af626acdd2134920d8ca0a6757 /Python/ast_opt.c | |
parent | b4536e1c6abe4c6219177a89e16575d05ea22f64 (diff) | |
download | cpython-526fdeb2278b61653df704d7cfcaedde504dee48.zip cpython-526fdeb2278b61653df704d7cfcaedde504dee48.tar.gz cpython-526fdeb2278b61653df704d7cfcaedde504dee48.tar.bz2 |
bpo-43244: Add pycore_ast.h header file (GH-24908)
Move _PyAST_GetDocString() and _PyAST_ExprAsUnicode() functions the
internal C API: from Include/ast.h to a new
Include/internal/pycore_ast.h header file. Don't export these
functions anymore: replace PyAPI_FUNC() with extern.
Remove also unused includes.
Diffstat (limited to 'Python/ast_opt.c')
-rw-r--r-- | Python/ast_opt.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Python/ast_opt.c b/Python/ast_opt.c index 6ad00dc..c76b428 100644 --- a/Python/ast_opt.c +++ b/Python/ast_opt.c @@ -1,7 +1,6 @@ /* AST Optimizer */ #include "Python.h" -#include "Python-ast.h" -#include "ast.h" +#include "pycore_ast.h" // _PyAST_GetDocString() static int |