[Python-checkins] bpo-35259: Limit `Py_FinalizeEx()` to `Py_LIMITED_API >= 0x03060000`. (GH-10620)

Serhiy Storchaka webhook-mailer at python.org
Thu Dec 20 16:11:07 EST 2018


https://github.com/python/cpython/commit/3e8f962e63c2f929604443531a9a3aced242f3e8
commit: 3e8f962e63c2f929604443531a9a3aced242f3e8
branch: master
author: Arthur Neufeld <aneufeld at seinesoftware.ca>
committer: Serhiy Storchaka <storchaka at gmail.com>
date: 2018-12-20T23:11:03+02:00
summary:

bpo-35259: Limit `Py_FinalizeEx()` to `Py_LIMITED_API >= 0x03060000`. (GH-10620)

files:
A Misc/NEWS.d/next/C API/2018-11-22-13-52-36.bpo-35259.p07c61.rst
M Include/pylifecycle.h

diff --git a/Include/pylifecycle.h b/Include/pylifecycle.h
index 5419bc943240..1df114a73de3 100644
--- a/Include/pylifecycle.h
+++ b/Include/pylifecycle.h
@@ -12,7 +12,9 @@ extern "C" {
 PyAPI_FUNC(void) Py_Initialize(void);
 PyAPI_FUNC(void) Py_InitializeEx(int);
 PyAPI_FUNC(void) Py_Finalize(void);
+#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03060000
 PyAPI_FUNC(int) Py_FinalizeEx(void);
+#endif
 PyAPI_FUNC(int) Py_IsInitialized(void);
 
 /* Subinterpreter support */
diff --git a/Misc/NEWS.d/next/C API/2018-11-22-13-52-36.bpo-35259.p07c61.rst b/Misc/NEWS.d/next/C API/2018-11-22-13-52-36.bpo-35259.p07c61.rst
new file mode 100644
index 000000000000..1f4801cbfb71
--- /dev/null
+++ b/Misc/NEWS.d/next/C API/2018-11-22-13-52-36.bpo-35259.p07c61.rst	
@@ -0,0 +1,2 @@
+Conditionally declare :c:func:`Py_FinalizeEx()` (new in 3.6) based on
+Py_LIMITED_API. Patch by Arthur Neufeld.



More information about the Python-checkins mailing list