本文整理汇总了Python中pypy.jit.metainterp.heapcache.HeapCache.arraylen方法的典型用法代码示例。如果您正苦于以下问题:Python HeapCache.arraylen方法的具体用法?Python HeapCache.arraylen怎么用?Python HeapCache.arraylen使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pypy.jit.metainterp.heapcache.HeapCache
的用法示例。
在下文中一共展示了HeapCache.arraylen方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_length_cache
# 需要导入模块: from pypy.jit.metainterp.heapcache import HeapCache [as 别名]
# 或者: from pypy.jit.metainterp.heapcache.HeapCache import arraylen [as 别名]
def test_length_cache(self):
h = HeapCache()
h.new_array(box1, lengthbox1)
assert h.arraylen(box1) is lengthbox1
assert h.arraylen(box2) is None
h.arraylen_now_known(box2, lengthbox2)
assert h.arraylen(box2) is lengthbox2
示例2: test_replace_box_array
# 需要导入模块: from pypy.jit.metainterp.heapcache import HeapCache [as 别名]
# 或者: from pypy.jit.metainterp.heapcache.HeapCache import arraylen [as 别名]
def test_replace_box_array(self):
h = HeapCache()
h.setarrayitem(box1, descr1, index1, box2)
h.setarrayitem(box1, descr2, index1, box3)
h.arraylen_now_known(box1, lengthbox1)
h.setarrayitem(box2, descr1, index2, box1)
h.setarrayitem(box3, descr2, index2, box1)
h.setarrayitem(box2, descr3, index2, box3)
h.replace_box(box1, box4)
assert h.arraylen(box4) is lengthbox1
assert h.getarrayitem(box4, descr1, index1) is box2
assert h.getarrayitem(box4, descr2, index1) is box3
assert h.getarrayitem(box2, descr1, index2) is box4
assert h.getarrayitem(box3, descr2, index2) is box4
assert h.getarrayitem(box2, descr3, index2) is box3
h.replace_box(lengthbox1, lengthbox2)
assert h.arraylen(box4) is lengthbox2