Searched defs:py_strings (Results 1 - 1 of 1) sorted by relevance

/vbox/src/libs/libxml2-2.6.31/python/
H A Dlibxml.c3444 PystringSet_Convert(PyObject *py_strings, xmlChar *** result) argument
3454 if (PyTuple_Check(py_strings))
3456 else if (PyList_Check(py_strings))
3458 else if (py_strings == Py_None) {
3469 ? PyTuple_GET_SIZE(py_strings)
3470 : PyList_GET_SIZE(py_strings));
3486 ? PyTuple_GET_ITEM(py_strings, idx)
3487 : PyList_GET_ITEM(py_strings, idx));

Completed in 41 milliseconds