summaryrefslogtreecommitdiff
path: root/dedup/utils.py
blob: 2fae9fd6b140deb59c48f2af6a10e1c350d93e75 (plain)
1
2
3
4
5
6
7
def fetchiter(cursor):
    rows = cursor.fetchmany()
    while rows:
        for row in rows:
            yield row
        rows = cursor.fetchmany()