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 b089b6b commit e01f95bCopy full SHA for e01f95b
math/scipy/src/ScipyMinimizer.cxx
@@ -114,7 +114,12 @@ void ScipyMinimizer::PyInitialize()
114
"ROOT Scipy parameters", /* module documentation, may be NULL */
115
-1, /* size of per-interpreter state of the module,
116
or -1 if the module keeps state in global variables. */
117
- ParamsMethods};
+ ParamsMethods,
118
+ NULL, /* m_slots */
119
+ NULL, /* m_traverse */
120
+ 0, /* m_clear */
121
+ NULL /* m_free */
122
+ };
123
124
auto PyInit_params = [](void) -> PyObject * {
125
PyObject *m;
0 commit comments