Lines Matching defs:obj
96 sqlite3_int64_converter(PyObject *obj, sqlite3_int64 *result)
98 if (!PyLong_Check(obj)) {
102 *result = _pysqlite_long_as_int64(obj);
459 pysqlite_Blob *obj = PyObject_GC_New(pysqlite_Blob, self->state->BlobType);
460 if (obj == NULL) {
464 obj->connection = (pysqlite_Connection *)Py_NewRef(self);
465 obj->blob = blob;
466 obj->offset = 0;
467 obj->in_weakreflist = NULL;
469 PyObject_GC_Track(obj);
472 PyObject *weakref = PyWeakref_NewRef((PyObject *)obj, NULL);
482 return (PyObject *)obj;
485 Py_XDECREF(obj);