summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorPetr Viktorin <encukou@gmail.com>2021-04-23 12:17:58 (GMT)
committerGitHub <noreply@github.com>2021-04-23 12:17:58 (GMT)
commit9d6a2d0ee7e55402656e1dec46400591b62db331 (patch)
treec9d5c5cb1aca48f6fc10ea337d728293c63ac457 /Misc/NEWS.d
parente7cc64e297001cc79b9afab80f71d9e6d1267cb7 (diff)
downloadcpython-9d6a2d0ee7e55402656e1dec46400591b62db331.zip
cpython-9d6a2d0ee7e55402656e1dec46400591b62db331.tar.gz
cpython-9d6a2d0ee7e55402656e1dec46400591b62db331.tar.bz2
bpo-43795: PEP-652: Clean up the stable ABI/limited API (GH-25482)
- `_Py_EncodeLocaleRaw`, which is private by name, undocumented, and wasn't exported in `python3.dll`, is moved to a private header. - `_Py_HashSecret_Initialized`, again private by name, undocumented, and not exported in `python3.dll`, is excluded with `Py_LIMITED_API`. - `PyMarshal_*` and `PyMember_*One` functions, declared in private headers and not exported in `python3.dll`, are removed from `Doc/data/stable_abi.dat`. - `PyMem_Calloc` which *was* exported in `python3dll.c`, is moved to public headers where it joins its other `PyMem_*` friends. Only the last change is documented in the blurb; others are not user-visible. (Nothing uses `Doc/data/stable_abi.dat` yet.) https://bugs.python.org/issue43795
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/C API/2021-04-20-15-06-29.bpo-43795.y0IP4c.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/C API/2021-04-20-15-06-29.bpo-43795.y0IP4c.rst b/Misc/NEWS.d/next/C API/2021-04-20-15-06-29.bpo-43795.y0IP4c.rst
new file mode 100644
index 0000000..1dee6e2
--- /dev/null
+++ b/Misc/NEWS.d/next/C API/2021-04-20-15-06-29.bpo-43795.y0IP4c.rst
@@ -0,0 +1,2 @@
+:c:func:`PyMem_Calloc` is now available in the limited C API
+(``Py_LIMITED_API``).