1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Fixed #12546. Objects with a __len__ that returns 0 can now be serialized. Thanks, casobn for the report and Alex Gaynor for the patch and tests.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@12576 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Joseph Kocherhans
2010-02-24 15:54:03 +00:00
parent ae43f651f2
commit 9f4bf525f8
3 changed files with 12 additions and 6 deletions

View File

@@ -8,7 +8,9 @@ forward, backwards and self references.
"""
import unittest, datetime
import datetime
import decimal
import unittest
from cStringIO import StringIO
from django.utils.functional import curry
@@ -18,10 +20,6 @@ from django.core import management
from django.conf import settings
from models import *
try:
import decimal
except ImportError:
from django.utils import _decimal as decimal
# A set of functions that can be used to recreate
# test data objects of various kinds.
@@ -326,6 +324,8 @@ The end."""),
(data_obj, 1001, BigIntegerData, -9223372036854775808),
(data_obj, 1002, BigIntegerData, 0),
(data_obj, 1003, BigIntegerData, None),
(data_obj, 1004, LengthModel, 0),
(data_obj, 1005, LengthModel, 1),
]
# Because Oracle treats the empty string as NULL, Oracle is expected to fail