Searched refs:pysqlite_RowType (Results 1 – 8 of 8) sorted by relevance
202 if (PyType_IsSubtype(Py_TYPE(_other), &pysqlite_RowType)) { in pysqlite_row_richcompare()236 PyTypeObject pysqlite_RowType = { variable280 pysqlite_RowType.tp_new = pysqlite_row_new; in pysqlite_row_setup_types()281 pysqlite_RowType.tp_as_mapping = &pysqlite_row_as_mapping; in pysqlite_row_setup_types()282 pysqlite_RowType.tp_as_sequence = &pysqlite_row_as_sequence; in pysqlite_row_setup_types()283 return PyType_Ready(&pysqlite_RowType); in pysqlite_row_setup_types()
35 extern PyTypeObject pysqlite_RowType;
332 Py_INCREF(&pysqlite_RowType); in init_sqlite3()333 PyModule_AddObject(module, "Row", (PyObject*) &pysqlite_RowType); in init_sqlite3()
219 if (PyObject_TypeCheck(_other, pysqlite_RowType)) { in pysqlite_row_richcompare()262 PyTypeObject *pysqlite_RowType = NULL; variable267 pysqlite_RowType = (PyTypeObject *)PyType_FromModuleAndSpec(module, &row_spec, NULL); in pysqlite_row_setup_types()268 if (pysqlite_RowType == NULL) { in pysqlite_row_setup_types()
36 extern PyTypeObject *pysqlite_RowType;
396 ADD_TYPE(module, *pysqlite_RowType); in PyInit__sqlite3()
16 if ((type == pysqlite_RowType) && in pysqlite_row_new()
55 Modules/_sqlite/row.h - pysqlite_RowType -2379 Modules/_sqlite/row.c - pysqlite_RowType -