bindings: python: replace PyModule_AddObjectRef() with PyModule_AddObject()
authorBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Mon, 9 Oct 2023 19:02:52 +0000 (21:02 +0200)
committerBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Wed, 11 Oct 2023 08:02:09 +0000 (10:02 +0200)
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>
bindings/python/gpiod/ext/module.c

index 25c252a7dc0a363c9d1963cbe93d6663dff2b749..b456190498db5c8d26028e38e064b5a2ba29b735 100644 (file)
@@ -178,9 +178,9 @@ PyMODINIT_FUNC PyInit__ext(void)
                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;
        }