def test_multiple_inheritance(self):
"""
Issue #96
"""
import collections
class Base(object):
pass
class Foo(Base, collections.Container):
def __contains__(self, item):
return False