From: Petr Viktorin Date: Thu, 21 Apr 2022 16:03:25 +0000 (+0200) Subject: bpo-47169: Export PyOS_CheckStack on Windows (GH-32414) X-Git-Tag: v3.11.0b1~267 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ac4ffd3be2049591701fee9f054191cce5ab9762;p=thirdparty%2FPython%2Fcpython.git bpo-47169: Export PyOS_CheckStack on Windows (GH-32414) --- diff --git a/Misc/NEWS.d/next/C API/2022-04-06-16-54-39.bpo-47169.EGzX4B.rst b/Misc/NEWS.d/next/C API/2022-04-06-16-54-39.bpo-47169.EGzX4B.rst new file mode 100644 index 000000000000..df2889161193 --- /dev/null +++ b/Misc/NEWS.d/next/C API/2022-04-06-16-54-39.bpo-47169.EGzX4B.rst @@ -0,0 +1 @@ +:c:func:`PyOS_CheckStack` is now exported in the Stable ABI on Windows. diff --git a/PC/python3dll.c b/PC/python3dll.c index 0aee2aec8472..aabc1e83868e 100755 --- a/PC/python3dll.c +++ b/PC/python3dll.c @@ -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) diff --git a/Tools/scripts/stable_abi.py b/Tools/scripts/stable_abi.py index 9b90e344977f..7376a4649ca0 100755 --- a/Tools/scripts/stable_abi.py +++ b/Tools/scripts/stable_abi.py @@ -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