Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork33.7k
Closed
Description
Bug report
Concurrent accesses tomodule_state->compile_template in the free threaded build
Lines 1169 to 1177 in1feaecc
| /* delegate to Python code */ | |
| PyObject*func=module_state->compile_template; | |
| if (func==NULL) { | |
| func=PyImport_ImportModuleAttrString("re","_compile_template"); | |
| if (func==NULL) { | |
| returnNULL; | |
| } | |
| Py_XSETREF(module_state->compile_template,func); | |
| } |