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
orjson.dumps() raises an exception if the object to be serialized
is not given as a positional argument. orjson.dumps({}) is intended and ok
while orjson.dumps(obj={}) is an error. This makes it consistent with the
documentation, help() annotation, and type annotation.
Fix orphan reference in exception creation that leaks memory until the
garbage collector runs.
Changed
Improve serialization performance marginally by using the fastcall/vectorcall
calling convention on python3.7 and above.