本文整理汇总了Python中dictset.DictSet.__setitem__方法的典型用法代码示例。如果您正苦于以下问题:Python DictSet.__setitem__方法的具体用法?Python DictSet.__setitem__怎么用?Python DictSet.__setitem__使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类dictset.DictSet
的用法示例。
在下文中一共展示了DictSet.__setitem__方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test1
# 需要导入模块: from dictset import DictSet [as 别名]
# 或者: from dictset.DictSet import __setitem__ [as 别名]
def test1(self):
L = DictSet(s2d('a1 c5666788'))
R = s2l('a1 c56 7')
with self.assertRaises(TypeError) as cm:
L.__setitem__('a',42)
self.assertEqual(str(cm.exception),
"'int' object is not iterable")
示例2: test0
# 需要导入模块: from dictset import DictSet [as 别名]
# 或者: from dictset.DictSet import __setitem__ [as 别名]
def test0(self):
L = DictSet(s2d('a1 c5666788'))
R = s2l('a1 c56 7')
with self.assertRaises(TypeError) as cm:
L.__setitem__([],'8')
self.assertEqual(str(cm.exception),
"unhashable type: 'list'")
示例3: test3
# 需要导入模块: from dictset import DictSet [as 别名]
# 或者: from dictset.DictSet import __setitem__ [as 别名]
def test3(self):
L = DictSet(s2d('a1 c5666788'))
R = s2l('a1 c56 78 z42')
L.__setitem__('z','42') # create new item
self.assertEqual(d2l(L),R)
示例4: test2
# 需要导入模块: from dictset import DictSet [as 别名]
# 或者: from dictset.DictSet import __setitem__ [as 别名]
def test2(self):
L = DictSet(s2d('a1 c5666788'))
R = s2l('a1 c42')
L.__setitem__('c','42') # overwrite existing item
self.assertEqual(d2l(L),R)