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
Fix unpickling when compiled with newer mypycs (#9)
mypyc breaks pickling by default now
(https://mypyc.readthedocs.io/en/latest/differences_from_python.html#pickling-and-copying-objects),
and we need to opt out.
Somewhat surprisingly, that seems to be insufficient. When
allow_interpreted_subclasses isn't set, many of the objects will be
allegedly unpickled but none of their attributes are set. This /seems/
like a mypyc bug, but I haven't looked into it yet.
0 commit comments