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
This fixes a potential memory leak with python 3.9:
slezica/python-frozendict#38
* gnu/packages/python-xyz.scm (python-frozendict): Update to 2.3.4.
[home-page]: Set to new upstream repository.
Signed-off-by: Christopher Baines <[email protected]>
When frozendict is converted to string in python 3.9, it causes allocations of memory which can not be released with
gc.collect()
Result with frozendict
Result with builtin dictionary
The text was updated successfully, but these errors were encountered: