def test_multiple_inheritance(self):
"""
Issue #96 (for newstr instead of newobject)
"""
import collections
class Base(str):
pass
class Foo(Base, collections.Container):
def __contains__(self, item):
return False
评论列表
文章目录