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
The reason is that XML serializer class inherits from base.Serializer and not PythonSerializer which we monkey patch. Solution would be to monkey patch start_object method in XML serializer class, however this would mean copy-pasting 17 lines of code, so maybe it would be better to make some adjustments to Django core.
The text was updated successfully, but these errors were encountered:
The reason is that XML serializer class inherits from
base.Serializer
and notPythonSerializer
which we monkey patch. Solution would be to monkey patchstart_object
method in XML serializer class, however this would mean copy-pasting 17 lines of code, so maybe it would be better to make some adjustments to Django core.The text was updated successfully, but these errors were encountered: