1
0
mirror of https://github.com/django/django.git synced 2025-03-14 03:10:45 +00:00

[1.10.x] Fixed #26831 -- Documented session data must be JSON encodable for JSONSerializer.

Backport of 1f82b857ceb75f2d7a68e79c6a00c30bfe7f1318 from master
This commit is contained in:
Md. Sadaf Noor 2016-07-03 12:59:47 +06:00 committed by Tim Graham
parent a01d3d5776
commit 5d8332aaee

View File

@ -348,6 +348,9 @@ Bundled serializers
>>> request.session['0']
'bar'
Similarly, data that can't be encoded in JSON, such as non-UTF8 bytes like
``'\xd9'`` (which raises :exc:`UnicodeDecodeError`), can't be stored.
See the :ref:`custom-serializers` section for more details on limitations
of JSON serialization.