mirror of
https://github.com/python/cpython.git
synced 2025-08-30 13:38:43 +00:00
bpo-43795: Remove Py_FrozenMain from the Limited API & Stable ABI (GH-26241) (GH-26353)
Py_FrozenMain was added to the Limited C API in [bpo-42591]() (3.10.0a4);
but to fix that issue it would be enough to add it to the regular C API.
The function is undocumented, tests were added very recently ([bpo-44131]()),
and most importantly, it is not present in all builds of Python, as
the linker sometimes omits it as unused.
It should be added back when these issues are fixed.
Note that this does not affect Python's regular C API.
(cherry picked from commit d16856960e
)
Co-authored-by: Petr Viktorin <encukou@gmail.com>
Co-authored-by: Petr Viktorin <encukou@gmail.com>
This commit is contained in:
parent
ddc503c8d2
commit
68b9c20a98
7 changed files with 9 additions and 7 deletions
|
@ -55,7 +55,6 @@ EXPORT_FUNC(Py_Exit)
|
|||
EXPORT_FUNC(Py_FatalError)
|
||||
EXPORT_FUNC(Py_Finalize)
|
||||
EXPORT_FUNC(Py_FinalizeEx)
|
||||
EXPORT_FUNC(Py_FrozenMain)
|
||||
EXPORT_FUNC(Py_GenericAlias)
|
||||
EXPORT_FUNC(Py_GenericAliasType)
|
||||
EXPORT_FUNC(Py_GetArgcArgv)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue