We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2dc070f commit 59a2076Copy full SHA for 59a2076
include/pybind11/pybind11.h
@@ -1463,8 +1463,8 @@ class module_ : public object {
1463
#ifdef Py_mod_multiple_interpreters
1464
slots[i].slot = Py_mod_multiple_interpreters;
1465
slots[i].value = detail::multi_interp_option(options...);
1466
- if (detail::gil_not_used_option(options...) &&
1467
- slots[i].value == Py_MOD_MULTIPLE_INTERPRETERS_SUPPORTED) {
+ if (detail::gil_not_used_option(options...)
+ && slots[i].value == Py_MOD_MULTIPLE_INTERPRETERS_SUPPORTED) {
1468
// if you support free threading and multi-interpreters,
1469
// then you definitely also support per-interpreter GIL
1470
// even if you don't know it.
0 commit comments