Lines Matching refs:item_py
37 PyObject *item_py = NULL; in PyCF_CF2Python_sequence() local
45 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() local
179 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()
182 Py_DECREF(item_py); in PyCF_Python2CF_sequence()
190 Py_XDECREF(item_py); in PyCF_Python2CF_sequence()
201 PyObject *item_py = NULL, *key_py = NULL, *value_py = NULL; in PyCF_Python2CF_mapping() local
221 item_py = PySequence_GetItem(aslist, i); in PyCF_Python2CF_mapping()
222 if (item_py == NULL) goto err; in PyCF_Python2CF_mapping()
223 if (!PyArg_ParseTuple(item_py, "OO", &key_py, &value_py)) goto err; in PyCF_Python2CF_mapping()
235 Py_XDECREF(item_py); in PyCF_Python2CF_mapping()