From c2c3e930963d1a4786bd31451f091b04e2ecc35b Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Mon, 20 Aug 2007 01:15:32 +0000 Subject: [PATCH] Removed _dict_helper() DB backend helper function, as it wasn't being used anymore git-svn-id: http://code.djangoproject.com/svn/django/trunk@5971 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/db/backends/__init__.py | 4 ---- django/db/backends/util.py | 8 -------- 2 files changed, 12 deletions(-) diff --git a/django/db/backends/__init__.py b/django/db/backends/__init__.py index 3baf752ec4..632dd36639 100644 --- a/django/db/backends/__init__.py +++ b/django/db/backends/__init__.py @@ -5,10 +5,6 @@ except ImportError: # Import copy of _thread_local.py from Python 2.4 from django.utils._threading_local import local -def _dict_helper(desc, row): - "Returns a dictionary for the given cursor.description and result row." - return dict(zip([col[0] for col in desc], row)) - class BaseDatabaseWrapper(local): """ Represents a database connection. diff --git a/django/db/backends/util.py b/django/db/backends/util.py index bd66a1ddbe..fa2df22927 100644 --- a/django/db/backends/util.py +++ b/django/db/backends/util.py @@ -124,11 +124,3 @@ def truncate_name(name, length=None): hash = md5.md5(name).hexdigest()[:4] return '%s%s' % (name[:length-4], hash) - -################################################################################## -# Helper functions for dictfetch* for databases that don't natively support them # -################################################################################## - -def _dict_helper(desc, row): - "Returns a dictionary for the given cursor.description and result row." - return dict(zip([col[0] for col in desc], row))