bindings: python: avoid calling object method callbacks directly
authorBartosz Golaszewski <bartekgola@gmail.com>
Wed, 6 Jun 2018 10:26:23 +0000 (12:26 +0200)
committerBartosz Golaszewski <bartekgola@gmail.com>
Thu, 7 Jun 2018 07:25:04 +0000 (09:25 +0200)
commit6b3450372e93ed31ba6d9033cec231256e285916
tree81e8b10765f42ccd44482cc1ecec65815583859d
parent18d286843b2218b01c2d07375806bb34f2f7cac9
bindings: python: avoid calling object method callbacks directly

Where it's impossible to use PyObject_CallMethod() (e.g. when we want
to pass args and kwargs unchanged to the method being called), use
a combination of PyObject_GetAttrString() and PyObject_Call().

Signed-off-by: Bartosz Golaszewski <bartekgola@gmail.com>
bindings/python/gpiodmodule.c