Skip to content

Commit 2bcfa29

Browse files
author
Erlend E. Aasland
committed
Normalize connection_dealloc naming
1 parent b080ff7 commit 2bcfa29

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Modules/_sqlite/connection.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ connection_clear(pysqlite_Connection *self)
259259
}
260260

261261
static void
262-
pysqlite_connection_dealloc(pysqlite_Connection *self)
262+
connection_dealloc(pysqlite_Connection *self)
263263
{
264264
PyTypeObject *tp = Py_TYPE(self);
265265
PyObject_GC_UnTrack(self);
@@ -1932,7 +1932,7 @@ static struct PyMemberDef connection_members[] =
19321932
};
19331933

19341934
static PyType_Slot connection_slots[] = {
1935-
{Py_tp_dealloc, pysqlite_connection_dealloc},
1935+
{Py_tp_dealloc, connection_dealloc},
19361936
{Py_tp_doc, (void *)connection_doc},
19371937
{Py_tp_methods, connection_methods},
19381938
{Py_tp_members, connection_members},

0 commit comments

Comments
 (0)