summaryrefslogtreecommitdiff
path: root/django/db
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2011-09-10 17:38:58 +0000
committerAlex Gaynor <alex.gaynor@gmail.com>2011-09-10 17:38:58 +0000
commitefb832744466548ea6f86fa027ffe702baa0d9a0 (patch)
treeae06de05ef40aba04d1e6509025edb227a56a21d /django/db
parenteb297583b1b78403cda501133a52e71dd0381576 (diff)
Fixed #16808, removed some dead code from teh ORM. Thanks to aaugustin for the patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16782 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/db')
-rw-r--r--django/db/backends/util.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/django/db/backends/util.py b/django/db/backends/util.py
index 0766f87787..9d2d379132 100644
--- a/django/db/backends/util.py
+++ b/django/db/backends/util.py
@@ -102,11 +102,6 @@ def typecast_timestamp(s): # does NOT store time zone information
return datetime.datetime(int(dates[0]), int(dates[1]), int(dates[2]),
int(times[0]), int(times[1]), int(seconds), int((microseconds + '000000')[:6]))
-def typecast_boolean(s):
- if s is None: return None
- if not s: return False
- return str(s)[0].lower() == 't'
-
def typecast_decimal(s):
if s is None or s == '':
return None
@@ -116,9 +111,6 @@ def typecast_decimal(s):
# Converters from Python to database (string) #
###############################################
-def rev_typecast_boolean(obj, d):
- return obj and '1' or '0'
-
def rev_typecast_decimal(d):
if d is None:
return None