gh-85283: Build _uuid extension with limited C API (#111010)

This commit is contained in:
Victor Stinner 2023-10-18 01:07:12 +02:00 committed by GitHub
parent c58c63fdf6
commit 73a003f646
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 4 deletions

View File

@ -933,8 +933,8 @@ Build Changes
library, GCC built-in atomic functions, or MSVC interlocked intrinsics. library, GCC built-in atomic functions, or MSVC interlocked intrinsics.
* The ``errno``, ``md5``, ``resource``, ``winsound``, ``_ctypes_test``, * The ``errno``, ``md5``, ``resource``, ``winsound``, ``_ctypes_test``,
``_scproxy``, ``_stat`` and ``_testimportmultiple`` C extensions are now ``_scproxy``, ``_stat``, ``_testimportmultiple`` and ``_uuid`` C extensions
built with the :ref:`limited C API <limited-c-api>`. are now built with the :ref:`limited C API <limited-c-api>`.
(Contributed by Victor Stinner in :gh:`85283`.) (Contributed by Victor Stinner in :gh:`85283`.)

View File

@ -1,4 +1,4 @@
The ``errno``, ``md5``, ``resource``, ``winsound``, ``_ctypes_test``, The ``errno``, ``md5``, ``resource``, ``winsound``, ``_ctypes_test``,
``_scproxy``, ``_stat`` and ``_testimportmultiple`` C extensions are now built ``_scproxy``, ``_stat``, ``_testimportmultiple`` and ``_uuid`` C extensions are
with the :ref:`limited C API <limited-c-api>`. now built with the :ref:`limited C API <limited-c-api>`.
Patch by Victor Stinner. Patch by Victor Stinner.

View File

@ -3,6 +3,9 @@
* DCE compatible Universally Unique Identifier library. * DCE compatible Universally Unique Identifier library.
*/ */
// Need limited C API version 3.13 for Py_MOD_PER_INTERPRETER_GIL_SUPPORTED
#define Py_LIMITED_API 0x030d0000
#include "Python.h" #include "Python.h"
#if defined(HAVE_UUID_H) #if defined(HAVE_UUID_H)
// AIX, FreeBSD, libuuid with pkgconf // AIX, FreeBSD, libuuid with pkgconf