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
According to docs, unpickling may call __getattr__(), and __init__() is not necessarily called.
This causes an infinite recursion when unpickling TableBundle: __getattr__() calls unique(), which asks for self._tables_named, which calls __getattr__("_tables_named") presumably because self._tables_named was never initialized in __init__().
Unfortunately this means that TableBundle cannot be pickled!
The text was updated successfully, but these errors were encountered:
According to docs, unpickling may call
__getattr__()
, and__init__()
is not necessarily called.This causes an infinite recursion when unpickling
TableBundle
:__getattr__()
callsunique()
, which asks forself._tables_named
, which calls__getattr__("_tables_named")
presumably becauseself._tables_named
was never initialized in__init__()
.Unfortunately this means that
TableBundle
cannot be pickled!The text was updated successfully, but these errors were encountered: