We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8be2e2 commit d22aca8Copy full SHA for d22aca8
3 files changed
Doc/whatsnew/3.13.rst
@@ -821,6 +821,9 @@ Build Changes
821
* SQLite 3.15.2 or newer is required to build the :mod:`sqlite3` extension module.
822
(Contributed by Erlend Aasland in :gh:`105875`.)
823
824
+* The ``_stat`` C extension is now built with the :ref:`limited C API
825
+ <limited-c-api>`.
826
+ (Contributed by Victor Stinner in :gh:`85283`.)
827
828
C API Changes
829
=============
Misc/NEWS.d/next/Build/2023-08-29-15-05-09.gh-issue-85283.tlK7G7.rst
@@ -0,0 +1,2 @@
1
+The ``_stat`` C extension is now built with the :ref:`limited C API
2
+<limited-c-api>`. Patch by Victor Stinner.
Modules/_stat.c
@@ -11,6 +11,8 @@
11
*
12
*/
13
14
+#define Py_LIMITED_API 0x030d0000
15
+
16
#include "Python.h"
17
18
#ifdef __cplusplus
0 commit comments