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 f8eb733 commit ab4c6e6Copy full SHA for ab4c6e6
Modules/_sqlite/statement.c
@@ -369,7 +369,7 @@ void pysqlite_statement_mark_dirty(pysqlite_Statement* self)
369
}
370
371
static void
372
-pysqlite_statement_dealloc(pysqlite_Statement *self)
+stmt_dealloc(pysqlite_Statement *self)
373
{
374
PyTypeObject *tp = Py_TYPE(self);
375
PyObject_GC_UnTrack(self);
@@ -480,7 +480,7 @@ static PyMemberDef stmt_members[] = {
480
};
481
static PyType_Slot stmt_slots[] = {
482
{Py_tp_members, stmt_members},
483
- {Py_tp_dealloc, pysqlite_statement_dealloc},
+ {Py_tp_dealloc, stmt_dealloc},
484
{Py_tp_traverse, stmt_traverse},
485
{Py_tp_clear, stmt_clear},
486
{0, NULL},
0 commit comments