summaryrefslogtreecommitdiffstats
path: root/Modules/_opcode.c
diff options
context:
space:
mode:
Diffstat (limited to 'Modules/_opcode.c')
-rw-r--r--Modules/_opcode.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Modules/_opcode.c b/Modules/_opcode.c
index 85e0ffe..cc72cb1 100644
--- a/Modules/_opcode.c
+++ b/Modules/_opcode.c
@@ -406,6 +406,7 @@ _opcode_exec(PyObject *m) {
static PyModuleDef_Slot module_slots[] = {
{Py_mod_exec, _opcode_exec},
{Py_mod_multiple_interpreters, Py_MOD_PER_INTERPRETER_GIL_SUPPORTED},
+ {Py_mod_gil, Py_MOD_GIL_NOT_USED},
{0, NULL}
};