summaryrefslogtreecommitdiff
path: root/django/core/serializers/json.py
AgeCommit message (Expand)Author
2013-11-02More attacking E302 violatorsAlex Gaynor
2013-10-10Whitespace cleanup.Tim Graham
2013-08-31Fixed #13182 -- Prevented trailing spaces in indented json outputClaude Paroz
2013-07-29Removed most of absolute_import importsClaude Paroz
2013-03-19Fixed #18003 -- Preserved tracebacks when re-raising errors.konarkmodi
2012-08-29Replaced many smart_bytes by force_bytesClaude Paroz
2012-08-11[py3] Fixed JSON deserializationClaude Paroz
2012-08-07[py3] Ported django.utils.encoding.Aymeric Augustin
2012-07-22[py3] Replaced basestring by six.string_types.Aymeric Augustin
2012-06-28Fixed #15197 -- Fixed yaml serialization into HttpResponseClaude Paroz
2012-06-15Favored text (StringIO) over binary content for deserializationClaude Paroz
2012-06-07Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.Claude Paroz
2012-05-26Fixed #5423 -- Made dumpdata output one row at a time.Claude Paroz
2012-05-05Replaced cStringIO.StringIO by io.BytesIO.Claude Paroz
2012-04-29Fixed #18013 -- Use the new 'as' syntax for exceptions.Claude Paroz
2012-04-29Fixed #18023 -- Removed bundled simplejson.Aymeric Augustin
2012-02-10Fixed the exception handling when deserializing via generators on Python 2.5 ...Jannis Leidel
2012-02-09Fixed #11970 -- Wrapped the exception happening during deserialization in Des...Jannis Leidel
2011-12-17Tweaked changes from r17228 to cater for older simplejson versions.Ramiro Morales
2011-12-17Fixed #16850 -- Made sure we always represent Decimal instances with JS strin...Ramiro Morales
2011-11-18Added support for time zones. Thanks Luke Plant for the review. Fixed #2626.Aymeric Augustin
2011-01-08Fixed #14888 -- Removing duplicated code in serialisers. Thanks to eric.fortin.Andrew Godwin
2010-05-04Fixed #12164 -- Removed the Python 2.3 compatibility imports and workarounds....Russell Keith-Magee
2009-12-22Fixed #1142 -- Added multiple database support.Russell Keith-Magee
2009-12-14Fixed #7052 -- Added support for natural keys in serialization.Russell Keith-Magee
2008-07-30Fixed #7990 -- Modified serializers to use StringIO, rather than cStringIO, d...Russell Keith-Magee
2008-07-18Fixed #1443 -- Django's various bits now support dates before 1900. Thanks to...Adrian Holovaty
2008-02-19Fixed #6481 -- Fixed a bunch of import problems (and some whitespace cleanups).Malcolm Tredinnick
2007-12-17Fixed #6110 -- Mark the python format serializer as for internal use only. T...Malcolm Tredinnick
2007-06-01Fixed #3466 -- Fixed problem with specifyin a 'fields' argument to a JSON ser...Russell Keith-Magee
2007-05-21Removed some cruft left over from fixing problems in the move to DecimalFieldMalcolm Tredinnick
2007-05-21Fixed #2365, #3324 -- Renamed FloatField to DecimalField and changed the codeMalcolm Tredinnick
2007-04-25Fixed #3435 -- Fixed serializing to a file stream. Patch from SmileyChris.Malcolm Tredinnick
2006-09-22Fixed #2515 -- Allow passing of options to JSON serializer. Thanks, nesh.Malcolm Tredinnick
2006-08-28Fixed #2607 -- Fixed incorrect ordering of super() arguments in DateTimeAware...Adrian Holovaty
2006-07-31Fixed #2460 -- JSON serializer now correctly handles datetime objects. Thank...Jacob Kaplan-Moss
2006-06-29Added a JSON serializer, a few more tests, and a couple more lines of docs.Jacob Kaplan-Moss