本文整理汇总了Python中jsonpickle._samples.Thing.morestuff方法的典型用法代码示例。如果您正苦于以下问题:Python Thing.morestuff方法的具体用法?Python Thing.morestuff怎么用?Python Thing.morestuff使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类jsonpickle._samples.Thing
的用法示例。
在下文中一共展示了Thing.morestuff方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_refs_recursive
# 需要导入模块: from jsonpickle._samples import Thing [as 别名]
# 或者: from jsonpickle._samples.Thing import morestuff [as 别名]
def test_refs_recursive(self):
"""Test that complicated recursive refs work"""
a = Thing('a')
a.self_list = [Thing('0'), Thing('1'), Thing('2')]
a.first = a.self_list[0]
a.stuff = {a.first: a.first}
a.morestuff = {a.self_list[1]: a.stuff}
pickle = jsonpickle.encode(a, keys=True)
b = jsonpickle.decode(pickle, keys=True)
item = b.self_list[0]
self.assertEqual(b.first, item)
self.assertEqual(b.stuff[b.first], item)
self.assertEqual(b.morestuff[b.self_list[1]][b.first], item)