summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorPetr Viktorin <encukou@gmail.com>2020-11-10 13:47:31 (GMT)
committerGitHub <noreply@github.com>2020-11-10 13:47:31 (GMT)
commit0b9c4c6fcf2b0673fa45ddfa092934a9d5479b8c (patch)
tree73ffdc1affed0b0404a1d7310de2a7920d8f92f4 /Misc
parent9303b9ecc39e4e79e34d6ce7258036a9d0876046 (diff)
downloadcpython-0b9c4c6fcf2b0673fa45ddfa092934a9d5479b8c.zip
cpython-0b9c4c6fcf2b0673fa45ddfa092934a9d5479b8c.tar.gz
cpython-0b9c4c6fcf2b0673fa45ddfa092934a9d5479b8c.tar.bz2
bpo-42171: Add PEP573-related items to the limited API (GH-23009)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/C API/2020-10-27-21-10-14.bpo-42171.S3FWTP.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/C API/2020-10-27-21-10-14.bpo-42171.S3FWTP.rst b/Misc/NEWS.d/next/C API/2020-10-27-21-10-14.bpo-42171.S3FWTP.rst
new file mode 100644
index 0000000..5dfbb23
--- /dev/null
+++ b/Misc/NEWS.d/next/C API/2020-10-27-21-10-14.bpo-42171.S3FWTP.rst
@@ -0,0 +1,4 @@
+The :c:data:`METH_FASTCALL` calling convention is added to the limited API.
+The functions :c:func:`PyModule_AddType`, :c:func:`PyType_FromModuleAndSpec`,
+:c:func:`PyType_GetModule` and :c:func:`PyType_GetModuleState` are added to
+the limited API on Windows.