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 seems like a bug to me. Can't really figure out why this is happening. Calling sys.getsizeof on a FrozenList returns TypeError: must be type, not FrozenList
Code Sample, a copy-pastable example if possible
from pandas.core.base import FrozenList
import sys
fl = FrozenList()
sys.getsizeof(fl)
This seems like a bug to me. Can't really figure out why this is happening. Calling
sys.getsizeof
on a FrozenList returnsTypeError: must be type, not FrozenList
Code Sample, a copy-pastable example if possible
Expected Output
Some Integer
output of
pd.show_versions()
The text was updated successfully, but these errors were encountered: