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
Your pickling tests pass because Mutable._parents is memoized property so it won't create the dict until you access it. See these changes I've made and that cause the test to fail: anler@a36b612
Thanks!
The text was updated successfully, but these errors were encountered:
Hello,
I've seen you added support for pickling, but it does not take into account
Mutable._parents
which isWeakKeyDict
that cannot be pickled, see Supporting Pickling in SQLAlchemy.Your pickling tests pass because
Mutable._parents
is memoized property so it won't create the dict until you access it. See these changes I've made and that cause the test to fail: anler@a36b612Thanks!
The text was updated successfully, but these errors were encountered: