(cursor, row)
| 29 | |
| 30 | |
| 31 | def dict_factory(cursor, row): |
| 32 | d = {} |
| 33 | for idx, col in enumerate(cursor.description): |
| 34 | d[col[0]] = row[idx] |
| 35 | return d |
| 36 | |
| 37 | class MyCursor(sqlite.Cursor): |
| 38 | def __init__(self, *args, **kwargs): |
no test coverage detected
searching dependent graphs…