Skip to content

Commit

Permalink
pythongh-85283: _stat extension now uses the limited C API (python#11…
Browse files Browse the repository at this point in the history
…0711)

pythongh-85283: _stat extension uses the limited C API

The _stat C extension is now built with the limited C API.
  • Loading branch information
vstinner authored and Glyphack committed Jan 27, 2024
1 parent 6fc23bf commit 022ef91
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Doc/whatsnew/3.13.rst
Original file line number Diff line number Diff line change
Expand Up @@ -928,6 +928,10 @@ Build Changes
* Building CPython now requires a compiler with support for the C11 atomic
library, GCC built-in atomic functions, or MSVC interlocked intrinsics.

* The ``_stat`` C extension is now built with the :ref:`limited C API
<limited-c-api>`.
(Contributed by Victor Stinner in :gh:`85283`.)


C API Changes
=============
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
The ``_stat`` C extension is now built with the :ref:`limited C API
<limited-c-api>`. Patch by Victor Stinner.
3 changes: 3 additions & 0 deletions Modules/_stat.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
*
*/

// Need limited C API version 3.13 for PyModule_Add() on Windows
#define Py_LIMITED_API 0x030d0000

#include "Python.h"

#ifdef HAVE_SYS_TYPES_H
Expand Down

0 comments on commit 022ef91

Please sign in to comment.