Skip to content

Commit

Permalink
Fixed #2632 -- Made django.db.backends.util._dict_helper more efficie…
Browse files Browse the repository at this point in the history
…nt. Thanks for the patch, Andy Dustman

git-svn-id: http://code.djangoproject.com/svn/django/trunk@3684 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
adrianholovaty committed Aug 31, 2006
1 parent fe5462e commit 401b15d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django/db/backends/util.py
Expand Up @@ -98,7 +98,7 @@ def rev_typecast_boolean(obj, d):


def _dict_helper(desc, row): def _dict_helper(desc, row):
"Returns a dictionary for the given cursor.description and result row." "Returns a dictionary for the given cursor.description and result row."
return dict([(desc[col[0]][0], col[1]) for col in enumerate(row)]) return dict(zip([col[0] for col in desc], row))


def dictfetchone(cursor): def dictfetchone(cursor):
"Returns a row from the cursor as a dict" "Returns a row from the cursor as a dict"
Expand Down

0 comments on commit 401b15d

Please sign in to comment.