diff options
author | Victor Stinner <vstinner@python.org> | 2023-10-17 10:57:41 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-17 10:57:41 (GMT) |
commit | 4dba0a6d871c24bef8570e4f35669a0db89c2e3b (patch) | |
tree | 158a2665fc8ae2c26fac148af274e0ce6187d8c1 /Misc | |
parent | b75b1f389f083db8568bff573c33ab4ecf29655a (diff) | |
download | cpython-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.rst | 6 |
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. |