Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update xxlimited extensions
  • Loading branch information
vstinner committed Nov 1, 2023
commit 5bd61d135e3c8db422d9a5169dc255c4194dcd8e
3 changes: 2 additions & 1 deletion Modules/xxlimited.c
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@
pass
*/

#define Py_LIMITED_API 0x030b0000
// Need limited C API version 3.12 for Py_MOD_PER_INTERPRETER_GIL_SUPPORTED
#define Py_LIMITED_API 0x030c0000

#include "Python.h"
#include <string.h>
Expand Down
1 change: 0 additions & 1 deletion Modules/xxlimited_35.c
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,6 @@ xx_modexec(PyObject *m)

static PyModuleDef_Slot xx_slots[] = {
{Py_mod_exec, xx_modexec},
{Py_mod_multiple_interpreters, Py_MOD_PER_INTERPRETER_GIL_SUPPORTED},
{0, NULL}
};

Expand Down