mirror of
https://github.com/python/cpython.git
synced 2025-12-04 00:30:19 +00:00
bpo-43244: Add pycore_compile.h header file (GH-25000)
Remove the compiler functions using "struct _mod" type, because the public AST C API was removed: * PyAST_Compile() * PyAST_CompileEx() * PyAST_CompileObject() * PyFuture_FromAST() * PyFuture_FromASTObject() These functions were undocumented and excluded from the limited C API. Rename functions: * PyAST_CompileObject() => _PyAST_Compile() * PyFuture_FromASTObject() => _PyFuture_FromAST() Moreover, _PyFuture_FromAST() is no longer exported (replace PyAPI_FUNC() with extern). _PyAST_Compile() remains exported for test_peg_generator. Remove also compatibility functions: * PyAST_Compile() * PyAST_CompileEx() * PyFuture_FromAST()
This commit is contained in:
parent
f0a6fde882
commit
a81fca6ec8
15 changed files with 87 additions and 84 deletions
|
|
@ -1399,3 +1399,15 @@ Removed
|
|||
``Yield`` macro which was conflict with the ``Yield`` name used by the
|
||||
Windows ``<winbase.h>`` header. Use the Python :mod:`ast` module instead.
|
||||
(Contributed by Victor Stinner in :issue:`43244`.)
|
||||
|
||||
* Remove the compiler functions using ``struct _mod`` type, because the public
|
||||
AST C API was removed:
|
||||
|
||||
* ``PyAST_Compile()``
|
||||
* ``PyAST_CompileEx()``
|
||||
* ``PyAST_CompileObject()``
|
||||
* ``PyFuture_FromAST()``
|
||||
* ``PyFuture_FromASTObject()``
|
||||
|
||||
These functions were undocumented and excluded from the limited C API.
|
||||
(Contributed by Victor Stinner in :issue:`43244`.)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue