Searched refs:item_py (Results 1 – 1 of 1) sorted by relevance
37 PyObject *item_py = NULL; in PyCF_CF2Python_sequence() local45 item_py = PyCF_CF2Python(item_cf); in PyCF_CF2Python_sequence()46 if (item_py == NULL ) goto err; in PyCF_CF2Python_sequence()47 if (PyList_SetItem(rv, i, item_py) < 0) goto err; in PyCF_CF2Python_sequence()48 item_py = NULL; in PyCF_CF2Python_sequence()52 Py_XDECREF(item_py); in PyCF_CF2Python_sequence()162 PyObject *item_py = NULL; in PyCF_Python2CF_sequence() local179 item_py = PySequence_GetItem(src, i); in PyCF_Python2CF_sequence()180 if (item_py == NULL) goto err; in PyCF_Python2CF_sequence()181 if ( !PyCF_Python2CF(item_py, &item_cf)) goto err; in PyCF_Python2CF_sequence()[all …]