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

Fixed #23770 -- Changed serialization strategy for floats with respect to NaN and Inf

Thanks to w0rp for the report
This commit is contained in:
Markus Holtermann
2014-11-06 12:29:43 +01:00
committed by Baptiste Mispelon
parent b07aa52e8a
commit c7c098cf97
3 changed files with 17 additions and 4 deletions

View File

@@ -49,3 +49,6 @@ Bugfixes
* Allowed usage of ``DateTimeField()`` as ``Transform.output_field``
(:ticket:`23420`).
* Fixed a migration serializing bug involving ``float("nan")`` and
``float("inf")`` (:ticket:23770:).