diff options
| author | Md. Sadaf Noor <sadaf2605@gmail.com> | 2016-07-03 12:59:47 +0600 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-07-12 13:45:01 -0400 |
| commit | 1f82b857ceb75f2d7a68e79c6a00c30bfe7f1318 (patch) | |
| tree | 23caff0d4beb8865789e474b9697ccc810378d0e /docs | |
| parent | 08ed3cc6d160d0d864ff687db9a62959a86e7372 (diff) | |
Fixed #26831 -- Documented session data must be JSON encodable for JSONSerializer.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/topics/http/sessions.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/topics/http/sessions.txt b/docs/topics/http/sessions.txt index 6e2b48be86..bf1248e787 100644 --- a/docs/topics/http/sessions.txt +++ b/docs/topics/http/sessions.txt @@ -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. |
