﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
25455	optimization dictfetchall in documentation	Artyem Klimenko	nobody	"https://docs.djangoproject.com/en/1.8/topics/db/sql/
{{{
def dictfetchall(cursor):
    ""Return all rows from a cursor as a dict""
    columns = [col[0] for col in cursor.description]
    return [
        dict(zip(columns, row))
        for row in cursor.fetchall()
    ]
}}}


"	Cleanup/optimization	closed	Documentation		Normal	fixed	dictfetchall		Unreviewed	0	0	0	0	0	0
