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 b080ff7 commit 2bcfa29Copy full SHA for 2bcfa29
Modules/_sqlite/connection.c
@@ -259,7 +259,7 @@ connection_clear(pysqlite_Connection *self)
259
}
260
261
static void
262
-pysqlite_connection_dealloc(pysqlite_Connection *self)
+connection_dealloc(pysqlite_Connection *self)
263
{
264
PyTypeObject *tp = Py_TYPE(self);
265
PyObject_GC_UnTrack(self);
@@ -1932,7 +1932,7 @@ static struct PyMemberDef connection_members[] =
1932
};
1933
1934
static PyType_Slot connection_slots[] = {
1935
- {Py_tp_dealloc, pysqlite_connection_dealloc},
+ {Py_tp_dealloc, connection_dealloc},
1936
{Py_tp_doc, (void *)connection_doc},
1937
{Py_tp_methods, connection_methods},
1938
{Py_tp_members, connection_members},
0 commit comments