The object tracker, currently used in a crucial way to determine the flow graph topology, only works for objects that are weak referenceable. Types whose instances are not weak referenceable include:
all builtin scalar types (int, float, bool, str, bytes, NoneType)
The object tracker, currently used in a crucial way to determine the flow graph topology, only works for objects that are weak referenceable. Types whose instances are not weak referenceable include:
int
,float
,bool
,str
,bytes
,NoneType
)list
,tuple
,dict
)slice
)This is a fairly serious defect.