File tree 3 files changed +9
-1
lines changed
3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -833,6 +833,10 @@ Build Changes
833
833
:ref: `debug build <debug-build >`.
834
834
(Contributed by Victor Stinner in :gh: `108634 `.)
835
835
836
+ * The ``_stat `` C extension is now built with the :ref: `limited C API
837
+ <limited-c-api>`.
838
+ (Contributed by Victor Stinner in :gh: `85283 `.)
839
+
836
840
837
841
C API Changes
838
842
=============
Original file line number Diff line number Diff line change
1
+ The ``_stat `` C extension is now built with the :ref: `limited C API
2
+ <limited-c-api>`. Patch by Victor Stinner.
Original file line number Diff line number Diff line change 8
8
* as int 0.
9
9
*
10
10
* NOTE: POSIX only defines the values of the S_I* permission bits.
11
- *
12
11
*/
13
12
13
+ // Need limited C API version 3.13 for PyModule_Add() on Windows
14
+ #define Py_LIMITED_API 0x030d0000
15
+
14
16
#include "Python.h"
15
17
16
18
#ifdef __cplusplus
You can’t perform that action at this time.
0 commit comments