diff options
author | Victor Stinner <vstinner@python.org> | 2021-03-18 14:57:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-18 14:57:49 +0100 |
commit | eec8e61992fb654d4cf58de4d727c18622b8303e (patch) | |
tree | cfd8c8904ff2d67c496eadc133e698963d6d7723 /Python/ast.c | |
parent | fc980e0be19776ee05dfc5380eb5d6a8092935cb (diff) | |
download | cpython-git-eec8e61992fb654d4cf58de4d727c18622b8303e.tar.gz |
bpo-43244: Remove the PyAST_Validate() function (GH-24911)
Remove the PyAST_Validate() function. It is no longer possible to
build a AST object (mod_ty type) with the public C API. The function
was already excluded from the limited C API (PEP 384).
Rename PyAST_Validate() function to _PyAST_Validate(), move it to the
internal C API, and don't export it anymore (replace PyAPI_FUNC with
extern).
The function was added in bpo-12575 by
the commit 832bfe2ebd5ecfa92031cd40c8b41835ba90487f.
Diffstat (limited to 'Python/ast.c')
-rw-r--r-- | Python/ast.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ast.c b/Python/ast.c index c58b4a69b1..8ac2e60c92 100644 --- a/Python/ast.c +++ b/Python/ast.c @@ -551,7 +551,7 @@ validate_exprs(asdl_expr_seq *exprs, expr_context_ty ctx, int null_ok) } int -PyAST_Validate(mod_ty mod) +_PyAST_Validate(mod_ty mod) { int res = 0; |