You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Under Python 3 the JSONField(binary=True) option is not useful because it produces bytestring output, that JSONRenderer doesn't support. We should either:
Handle binary strings in JSONRenderer as if they by utf-8 decoding them to unicode.
Output unicode from JSONField(binary=True) instead of a bytestring.
The text was updated successfully, but these errors were encountered:
Refs #4185.
Under Python 3 the
JSONField(binary=True)
option is not useful because it produces bytestring output, that JSONRenderer doesn't support. We should either:JSONField(binary=True)
instead of a bytestring.The text was updated successfully, but these errors were encountered: