From b5d9ad982d8f28921d31f163e6d636a310a95922 Mon Sep 17 00:00:00 2001 From: Ramiro Morales Date: Sat, 17 Dec 2011 22:10:37 +0000 Subject: [PATCH] Fixed #16850 -- Made sure we always represent Decimal instances with JS strings when serializing. We force this when calling simplejson dump() to isolate us from changes of default behavior to encode them with JavaScript numbers instead that could introduce loss of precision when decoding back from JSON to Python. Thanks Raphael Hertzog for the report and Bob Ippolito for his help. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17228 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/core/serializers/json.py | 1 + 1 file changed, 1 insertion(+) diff --git a/django/core/serializers/json.py b/django/core/serializers/json.py index 2b4b2a382b..c2407d2a71 100644 --- a/django/core/serializers/json.py +++ b/django/core/serializers/json.py @@ -18,6 +18,7 @@ class Serializer(PythonSerializer): internal_use_only = False def end_serialization(self): + self.options.update({'use_decimal': False}) # Use JS strings to represent Python Decimal instances (ticket #16850) simplejson.dump(self.objects, self.stream, cls=DjangoJSONEncoder, **self.options) def getvalue(self):