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 09e0f1b commit 5971c68Copy full SHA for 5971c68
pandas/_libs/src/datetime/pd_datetime.c
@@ -246,7 +246,9 @@ static int pandas_datetime_exec(PyObject *Py_UNUSED(module)) {
246
247
static PyModuleDef_Slot pandas_datetime_slots[] = {
248
{Py_mod_exec, pandas_datetime_exec},
249
+#if PY_VERSION_HEX >= 0x030D0000
250
{Py_mod_gil, Py_MOD_GIL_NOT_USED},
251
+#endif
252
{0, NULL},
253
};
254
pandas/_libs/src/parser/pd_parser.c
@@ -162,7 +162,9 @@ static int pandas_parser_exec(PyObject *Py_UNUSED(module)) {
162
163
static PyModuleDef_Slot pandas_parser_slots[] = {
164
{Py_mod_exec, pandas_parser_exec},
165
166
167
168
169
170
0 commit comments