本文整理汇总了Python中conduit.Node.child方法的典型用法代码示例。如果您正苦于以下问题:Python Node.child方法的具体用法?Python Node.child怎么用?Python Node.child使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类conduit.Node
的用法示例。
在下文中一共展示了Node.child方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_list
# 需要导入模块: from conduit import Node [as 别名]
# 或者: from conduit.Node import child [as 别名]
def test_list(self):
n = Node()
n.append().set(1)
self.assertTrue(n.child(0).value(),1)
# TODO: this needs to work but doesn't
#self.assertTrue(n[0],1)
n2 = Node()
n2_c = n2.append()
n2_c.set(2)
self.assertEqual(n2.child(0).value(),2)
示例2: test_child
# 需要导入模块: from conduit import Node [as 别名]
# 或者: from conduit.Node import child [as 别名]
def test_child(self):
vec = array(range(100), uint32)
n = Node()
n['a'] = vec
na = n.child(0)
na_val = na.value()
self.assertEqual(na_val[99], 99)
n['b'] = vec
self.assertEqual(n.number_of_children(),2)