Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b7cf75 commit 66ecefcCopy full SHA for 66ecefc
1 file changed
Modules/_sqlite/row.c
@@ -176,11 +176,6 @@ PyObject* pysqlite_row_keys(pysqlite_Row* self, PyObject *Py_UNUSED(ignored))
176
return list;
177
}
178
179
-static int pysqlite_row_print(pysqlite_Row* self, FILE *fp, int flags)
180
-{
181
- return (&PyTuple_Type)->tp_print(self->data, fp, flags);
182
-}
183
-
184
static PyObject* pysqlite_iter(pysqlite_Row* self)
185
{
186
return PyObject_GetIter(self->data);
@@ -235,7 +230,7 @@ PyTypeObject pysqlite_RowType = {
235
230
sizeof(pysqlite_Row), /* tp_basicsize */
236
231
0, /* tp_itemsize */
237
232
(destructor)pysqlite_row_dealloc, /* tp_dealloc */
238
- (printfunc)pysqlite_row_print, /* tp_print */
233
+ 0, /* tp_print */
239
234
0, /* tp_getattr */
240
0, /* tp_setattr */
241
0, /* tp_reserved */
0 commit comments