Skip to content

Commit 202cec8

Browse files
yoneymeta-codesync[bot]
authored andcommitted
Declare experimental free-threaded Python support
Summary: Add experimental support for free-threaded Python. Reviewed By: grantlouisherman Differential Revision: D99869989 fbshipit-source-id: 1d99132841a7758c2f808a0a6176412c46dcffe1
1 parent c05b58c commit 202cec8

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

cinderx/_cinderx-lib.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1585,6 +1585,9 @@ PyModuleDef_Slot _cinderx_slots[] = {
15851585
{Py_mod_exec, reinterpret_cast<void*>(_cinderx_exec)},
15861586
#if PY_VERSION_HEX >= 0x030C0000
15871587
{Py_mod_multiple_interpreters, Py_MOD_MULTIPLE_INTERPRETERS_NOT_SUPPORTED},
1588+
#endif
1589+
#if PY_VERSION_HEX >= 0x030E0000
1590+
{Py_mod_gil, Py_MOD_GIL_NOT_USED},
15881591
#endif
15891592
{0, nullptr}};
15901593

0 commit comments

Comments
 (0)