> This stops the interface from leaking the row tuples (and thus the

> results of every fetch).

Stephen Robert Norris
This commit is contained in:
Bruce Momjian 2001-10-19 15:00:26 +00:00
parent 9590249e14
commit ece1b67f54

View File

@ -561,6 +561,7 @@ pgsource_fetch(pgsourceobject * self, PyObject * args)
}
PyList_Append(reslist, rowtuple);
Py_DECREF(rowtuple);
self->current_row++;
}