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))
176176 return list ;
177177}
178178
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-
184179static PyObject * pysqlite_iter (pysqlite_Row * self )
185180{
186181 return PyObject_GetIter (self -> data );
@@ -235,7 +230,7 @@ PyTypeObject pysqlite_RowType = {
235230 sizeof (pysqlite_Row ), /* tp_basicsize */
236231 0 , /* tp_itemsize */
237232 (destructor )pysqlite_row_dealloc , /* tp_dealloc */
238- ( printfunc ) pysqlite_row_print , /* tp_print */
233+ 0 , /* tp_print */
239234 0 , /* tp_getattr */
240235 0 , /* tp_setattr */
241236 0 , /* tp_reserved */
You can’t perform that action at this time.
0 commit comments