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
Thanks @bmerry. I've release 2.0.1 with the most of the fixes you've pointed out. I want to encourage you do a review of #84, and submit a PR in the future. You've already helped make addict a lot better.
With addict 2.0.0, this code generates a reference cycle and may lead to memory leaks:
Here
a
contains a reference toa.x
, anda.x.__parent__
points back toa
, thus creating a cycle.__setitem__
should probably clear__parent
and__key
after they've served their purpose.The text was updated successfully, but these errors were encountered: