blob: fcc8076dea63e078ff53472b067a874819b5dae9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
Remove the compiler and parser functions using ``struct _mod`` type, because
the public AST C API was removed:
* ``PyAST_Compile()``
* ``PyAST_CompileEx()``
* ``PyAST_CompileObject()``
* ``PyFuture_FromAST()``
* ``PyFuture_FromASTObject()``
* ``PyParser_ASTFromFile()``
* ``PyParser_ASTFromFileObject()``
* ``PyParser_ASTFromFilename()``
* ``PyParser_ASTFromString()``
* ``PyParser_ASTFromStringObject()``
These functions were undocumented and excluded from the limited C API.
Patch by Victor Stinner.
|