add_test('Monitor multiple lines using their file descriptors', line_event_poll_fd)
+print('API version is {}'.format(gpiod.version_string()))
+
for name, func in test_cases:
print('==============================================')
print('{}:'.format(name))
return line_obj;
}
+PyDoc_STRVAR(gpiod_Module_version_string_doc,
+"Get the API version of the library as a human-readable string.");
+
+static PyObject *gpiod_Module_version_string(void)
+{
+ return PyUnicode_FromFormat("%s", gpiod_version_string());
+}
+
static PyMethodDef gpiod_module_methods[] = {
{
.ml_name = "find_line",
.ml_flags = METH_VARARGS,
.ml_doc = gpiod_Module_find_line_doc,
},
+ {
+ .ml_name = "version_string",
+ .ml_meth = (PyCFunction)gpiod_Module_version_string,
+ .ml_flags = METH_NOARGS,
+ .ml_doc = gpiod_Module_version_string_doc,
+ },
{ }
};