mirror of https://github.com/python/cpython
bpo-47169: Export PyOS_CheckStack on Windows (GH-32414)
This commit is contained in:
parent
944fffee89
commit
ac4ffd3be2
|
@ -0,0 +1 @@
|
|||
:c:func:`PyOS_CheckStack` is now exported in the Stable ABI on Windows.
|
|
@ -484,6 +484,7 @@ EXPORT_FUNC(PyObject_SetItem)
|
|||
EXPORT_FUNC(PyObject_Size)
|
||||
EXPORT_FUNC(PyObject_Str)
|
||||
EXPORT_FUNC(PyObject_Type)
|
||||
EXPORT_FUNC(PyOS_CheckStack)
|
||||
EXPORT_FUNC(PyOS_double_to_string)
|
||||
EXPORT_FUNC(PyOS_FSPath)
|
||||
EXPORT_FUNC(PyOS_getsig)
|
||||
|
|
|
@ -58,6 +58,7 @@ IFDEF_DOC_NOTES = {
|
|||
WINDOWS_IFDEFS = frozenset({
|
||||
'MS_WINDOWS',
|
||||
'PY_HAVE_THREAD_NATIVE_ID',
|
||||
'USE_STACKCHECK',
|
||||
})
|
||||
|
||||
# The stable ABI manifest (Misc/stable_abi.txt) exists only to fill the
|
||||
|
|
Loading…
Reference in New Issue