def test_multiple_inheritance(self):
"""
Issue #96 (for newint instead of newobject)
"""
import collections
class Base(int):
pass
class Foo(Base, collections.Container):
def __add__(self, other):
return 0