Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
Drow.c177 static PyObject* pysqlite_row_richcompare(pysqlite_Row *self, PyObject *_other, int opid) in pysqlite_row_richcompare() argument
179 if (opid != Py_EQ && opid != Py_NE) { in pysqlite_row_richcompare()
185 PyObject *res = PyObject_RichCompare(self->description, other->description, opid); in pysqlite_row_richcompare()
186 if ((opid == Py_EQ && res == Py_True) in pysqlite_row_richcompare()
187 || (opid == Py_NE && res == Py_False)) { in pysqlite_row_richcompare()
189 return PyObject_RichCompare(self->data, other->data, opid); in pysqlite_row_richcompare()