File tree Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -176,11 +176,6 @@ PyObject* pysqlite_row_keys(pysqlite_Row* self, PyObject *Py_UNUSED(ignored))
176
176
return list ;
177
177
}
178
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
179
static PyObject * pysqlite_iter (pysqlite_Row * self )
185
180
{
186
181
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
235
0 , /* tp_setattr */
241
236
0 , /* tp_reserved */
You can’t perform that action at this time.
0 commit comments