bindings: python: fix the default_vals argument in line requests
authorBartosz Golaszewski <bartekgola@gmail.com>
Fri, 20 Jul 2018 08:13:59 +0000 (10:13 +0200)
committerBartosz Golaszewski <bartekgola@gmail.com>
Fri, 20 Jul 2018 08:35:35 +0000 (10:35 +0200)
We're assigning the wrong local variable in PyArg_ParseTupleAndKeywords()
which results in not honoring the default_vals argument. Fix the
LineBulk.request() implementation.

Fixes: 96c524c4951c ("bindings: implement python bindings")
Signed-off-by: Bartosz Golaszewski <bartekgola@gmail.com>
bindings/python/gpiodmodule.c

index 60f39c60b4f9256609a25c5ac24d33e8f2c03378..2110a202acc90afcc95c34a6893d335aedcdf3ce 100644 (file)
@@ -901,7 +901,7 @@ static PyObject *gpiod_LineBulk_request(gpiod_LineBulkObject *self,
 
        rv = PyArg_ParseTupleAndKeywords(args, kwds, "s|iiO", kwlist,
                                         &consumer, &type,
-                                        &flags, &default_vals);
+                                        &flags, &def_vals_obj);
        if (!rv)
                return NULL;