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
In modern Python it's unlikely to be significantly better than the built-in json. The module used by JSONMixin is overridable, so users can plug it in again if they want.
I'm relying on simplejson to serialize decimal.Decimal objects when calling to jsonify. In fact, jsonify it's called by flask-smorest which I'm using for building my API. What would be the recommended way (if any) to force jsonify to keep using simplejson?
In modern Python it's unlikely to be significantly better than the built-in
json
. The module used byJSONMixin
is overridable, so users can plug it in again if they want.See pallets/itsdangerous#146 and pallets/werkzeug#1766.
The text was updated successfully, but these errors were encountered: