Skip to content

Commit f8eb733

Browse files
author
Erlend E. Aasland
committed
Address review: visit row PyObjects for consistency
1 parent 2bcfa29 commit f8eb733

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Modules/_sqlite/row.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ row_clear(pysqlite_Row *self)
4242
static int
4343
row_traverse(pysqlite_Row *self, visitproc visit, void *arg)
4444
{
45+
Py_VISIT(self->data);
46+
Py_VISIT(self->description);
4547
Py_VISIT(Py_TYPE(self));
4648
return 0;
4749
}

0 commit comments

Comments
 (0)