本文整理汇总了Python中celery.datastructures.DictAttribute.items方法的典型用法代码示例。如果您正苦于以下问题:Python DictAttribute.items方法的具体用法?Python DictAttribute.items怎么用?Python DictAttribute.items使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类celery.datastructures.DictAttribute
的用法示例。
在下文中一共展示了DictAttribute.items方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_items
# 需要导入模块: from celery.datastructures import DictAttribute [as 别名]
# 或者: from celery.datastructures.DictAttribute import items [as 别名]
def test_items(self):
obj = Object()
obj.attr1 = 1
x = DictAttribute(obj)
x["attr2"] = 2
self.assertDictEqual(dict(x.iteritems()), dict(attr1=1, attr2=2))
self.assertDictEqual(dict(x.items()), dict(attr1=1, attr2=2))
示例2: test_get_set_keys_values_items
# 需要导入模块: from celery.datastructures import DictAttribute [as 别名]
# 或者: from celery.datastructures.DictAttribute import items [as 别名]
def test_get_set_keys_values_items(self):
x = DictAttribute(Bunch())
x["foo"] = "The quick brown fox"
self.assertEqual(x["foo"], "The quick brown fox")
self.assertEqual(x["foo"], x.obj.foo)
self.assertEqual(x.get("foo"), "The quick brown fox")
self.assertIsNone(x.get("bar"))
with self.assertRaises(KeyError):
x["bar"]
x.foo = "The quick yellow fox"
self.assertEqual(x["foo"], "The quick yellow fox")
self.assertIn(("foo", "The quick yellow fox"), list(x.items()))
self.assertIn("foo", list(x.keys()))
self.assertIn("The quick yellow fox", list(x.values()))
示例3: test_get_set_keys_values_items
# 需要导入模块: from celery.datastructures import DictAttribute [as 别名]
# 或者: from celery.datastructures.DictAttribute import items [as 别名]
def test_get_set_keys_values_items(self):
x = DictAttribute(Object())
x['foo'] = 'The quick brown fox'
self.assertEqual(x['foo'], 'The quick brown fox')
self.assertEqual(x['foo'], x.obj.foo)
self.assertEqual(x.get('foo'), 'The quick brown fox')
self.assertIsNone(x.get('bar'))
with self.assertRaises(KeyError):
x['bar']
x.foo = 'The quick yellow fox'
self.assertEqual(x['foo'], 'The quick yellow fox')
self.assertIn(
('foo', 'The quick yellow fox'),
list(x.items()),
)
self.assertIn('foo', list(x.keys()))
self.assertIn('The quick yellow fox', list(x.values()))