Bug report
Concurrent accesses to module_state->compile_template in the free threaded build
|
/* delegate to Python code */ |
|
PyObject *func = module_state->compile_template; |
|
if (func == NULL) { |
|
func = PyImport_ImportModuleAttrString("re", "_compile_template"); |
|
if (func == NULL) { |
|
return NULL; |
|
} |
|
Py_XSETREF(module_state->compile_template, func); |
|
} |
Linked PRs
Bug report
Concurrent accesses to
module_state->compile_templatein the free threaded buildcpython/Modules/_sre/sre.c
Lines 1169 to 1177 in 1feaecc
Linked PRs