PyModule_AddObjectRef() was added in cpython v3.10 while libgpiod claims
to depend on python v3.9. Replace it with an older variant that steals the
reference to the added object on success.
Reported-by: Phil Howard <phil@gadgetoid.com>
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
return NULL;
}
- ret = PyModule_AddObjectRef(module, "__all__", all);
- Py_DECREF(all);
+ ret = PyModule_AddObject(module, "__all__", all);
if (ret) {
+ Py_DECREF(all);
Py_DECREF(module);
return NULL;
}