summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2007-08-20 01:15:32 +0000
committerAdrian Holovaty <adrian@holovaty.com>2007-08-20 01:15:32 +0000
commitc2c3e930963d1a4786bd31451f091b04e2ecc35b (patch)
tree00dbead9d2cc486055422bbea01d80321d17f525
parenta6a5e3cf326849da55483cc041d8b69589183976 (diff)
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
-rw-r--r--django/db/backends/__init__.py4
-rw-r--r--django/db/backends/util.py8
2 files changed, 0 insertions, 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))