summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorArthur Neufeld <aneufeld@seinesoftware.ca>2018-12-20 21:11:03 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2018-12-20 21:11:03 (GMT)
commit3e8f962e63c2f929604443531a9a3aced242f3e8 (patch)
tree34ff55fbc6be045ed67596af995c55efe1da3f2d /Misc
parent9a8d1d7562b11969034b92217fe66aab7a951fb6 (diff)
downloadcpython-3e8f962e63c2f929604443531a9a3aced242f3e8.zip
cpython-3e8f962e63c2f929604443531a9a3aced242f3e8.tar.gz
cpython-3e8f962e63c2f929604443531a9a3aced242f3e8.tar.bz2
bpo-35259: Limit `Py_FinalizeEx()` to `Py_LIMITED_API >= 0x03060000`. (GH-10620)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/C API/2018-11-22-13-52-36.bpo-35259.p07c61.rst2
1 files changed, 2 insertions, 0 deletions
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 0000000..1f4801c
--- /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.