summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2023-10-17 10:57:41 (GMT)
committerGitHub <noreply@github.com>2023-10-17 10:57:41 (GMT)
commit4dba0a6d871c24bef8570e4f35669a0db89c2e3b (patch)
tree158a2665fc8ae2c26fac148af274e0ce6187d8c1 /Misc
parentb75b1f389f083db8568bff573c33ab4ecf29655a (diff)
downloadcpython-4dba0a6d871c24bef8570e4f35669a0db89c2e3b.zip
cpython-4dba0a6d871c24bef8570e4f35669a0db89c2e3b.tar.gz
cpython-4dba0a6d871c24bef8570e4f35669a0db89c2e3b.tar.bz2
gh-85283: Build md5 extension with limited C API (#110967)
* Replace _Py_strhex() with few lines of code. * Replace _PyType_GetModuleState() with PyType_GetModuleState(). * Fix make check-c-globals.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Build/2023-10-17-01-56-11.gh-issue-85283.V156T2.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Misc/NEWS.d/next/Build/2023-10-17-01-56-11.gh-issue-85283.V156T2.rst b/Misc/NEWS.d/next/Build/2023-10-17-01-56-11.gh-issue-85283.V156T2.rst
index db48496..4240db7 100644
--- a/Misc/NEWS.d/next/Build/2023-10-17-01-56-11.gh-issue-85283.V156T2.rst
+++ b/Misc/NEWS.d/next/Build/2023-10-17-01-56-11.gh-issue-85283.V156T2.rst
@@ -1,3 +1,3 @@
-The ``errno``, ``_ctypes_test`` and ``_testimportmultiple`` C extensions are
-now built with the :ref:`limited C API <limited-c-api>`. Patch by Victor
-Stinner.
+The ``errno``, ``md5``, ``_ctypes_test`` and ``_testimportmultiple`` C
+extensions are now built with the :ref:`limited C API <limited-c-api>`. Patch
+by Victor Stinner.