Home
last modified time | relevance | path

Searched refs:py_annlist (Results 1 – 1 of 1) sorted by relevance

/dports/devel/libsigrokdecode/libsigrokdecode-0.5.3/
H A Ddecoder.c383 PyObject *py_annlist, *py_ann; in get_annotations() local
398 py_annlist = PyObject_GetAttrString(dec->py_dec, "annotations"); in get_annotations()
399 if (!py_annlist) in get_annotations()
402 if (!PyTuple_Check(py_annlist)) { in get_annotations()
408 for (i = PyTuple_Size(py_annlist) - 1; i >= 0; i--) { in get_annotations()
409 py_ann = PyTuple_GetItem(py_annlist, i); in get_annotations()
425 Py_DECREF(py_annlist); in get_annotations()
435 Py_XDECREF(py_annlist); in get_annotations()