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 5bba97e commit ba04168Copy full SHA for ba04168
1 file changed
Modules/_sqlite/connection.c
@@ -1076,7 +1076,7 @@ _pysqlite_drop_unused_blob_references(pysqlite_Connection* self)
1076
for (Py_ssize_t i = 0; i < imax; i++) {
1077
PyObject* weakref = PyList_GET_ITEM(self->blobs, i);
1078
if (_PyWeakref_IsDead(weakref)) {
1079
- continue;
+ continue;
1080
}
1081
if (PyList_Append(new_list, weakref) != 0) {
1082
Py_DECREF(new_list);
0 commit comments