projects
/
qemu-gpiodev
/
libgpiod.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a610c50
)
bindings: python: fix the default_vals argument in line requests
author
Bartosz Golaszewski
<bartekgola@gmail.com>
Fri, 20 Jul 2018 08:13:59 +0000
(10:13 +0200)
committer
Bartosz 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
patch
|
blob
|
history
diff --git
a/bindings/python/gpiodmodule.c
b/bindings/python/gpiodmodule.c
index 60f39c60b4f9256609a25c5ac24d33e8f2c03378..2110a202acc90afcc95c34a6893d335aedcdf3ce 100644
(file)
--- a/
bindings/python/gpiodmodule.c
+++ b/
bindings/python/gpiodmodule.c
@@
-901,7
+901,7
@@
static PyObject *gpiod_LineBulk_request(gpiod_LineBulkObject *self,
rv = PyArg_ParseTupleAndKeywords(args, kwds, "s|iiO", kwlist,
&consumer, &type,
- &flags, &def
ault_vals
);
+ &flags, &def
_vals_obj
);
if (!rv)
return NULL;