diff options
author | Victor Stinner <vstinner@python.org> | 2023-10-17 23:07:12 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-17 23:07:12 (GMT) |
commit | 73a003f646aea723201f85b858991828f9053d2c (patch) | |
tree | c5dbbf4c4dc336df759010c5db911faa79fb1156 /Doc | |
parent | c58c63fdf615a1c2bfc995dd0b938d82e32b6cde (diff) | |
download | cpython-73a003f646aea723201f85b858991828f9053d2c.zip cpython-73a003f646aea723201f85b858991828f9053d2c.tar.gz cpython-73a003f646aea723201f85b858991828f9053d2c.tar.bz2 |
gh-85283: Build _uuid extension with limited C API (#111010)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.13.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/whatsnew/3.13.rst b/Doc/whatsnew/3.13.rst index 54f007f..e5f01fa 100644 --- a/Doc/whatsnew/3.13.rst +++ b/Doc/whatsnew/3.13.rst @@ -933,8 +933,8 @@ Build Changes library, GCC built-in atomic functions, or MSVC interlocked intrinsics. * The ``errno``, ``md5``, ``resource``, ``winsound``, ``_ctypes_test``, - ``_scproxy``, ``_stat`` and ``_testimportmultiple`` C extensions are now - built with the :ref:`limited C API <limited-c-api>`. + ``_scproxy``, ``_stat``, ``_testimportmultiple`` and ``_uuid`` C extensions + are now built with the :ref:`limited C API <limited-c-api>`. (Contributed by Victor Stinner in :gh:`85283`.) |