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
In python 2.7 code, I have a class that subclasses other classes. Some of the parent classes use from builtins import object while other parent classes do not.
The mro of this subclass then ends up with newobject not being at the second highest level, next to the original object. There are some of my other classes between the newobject and the base object in the mro. When i use from builtins import super on these objects, python crashes with a Segmentation Fault when it processes the newobject.
I believe the problem comes from the _interface_coptimizations.ObjectSpecificationDescriptor method that is on the newobject. I'm not sure what i can do to get this to work.