本文整理汇总了Python中numpy.lib.format.BUFFER_SIZE属性的典型用法代码示例。如果您正苦于以下问题:Python format.BUFFER_SIZE属性的具体用法?Python format.BUFFER_SIZE怎么用?Python format.BUFFER_SIZE使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类numpy.lib.format
的用法示例。
在下文中一共展示了format.BUFFER_SIZE属性的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_long_str
# 需要导入模块: from numpy.lib import format [as 别名]
# 或者: from numpy.lib.format import BUFFER_SIZE [as 别名]
def test_long_str():
# check items larger than internal buffer size, gh-4027
long_str_arr = np.ones(1, dtype=np.dtype((str, format.BUFFER_SIZE + 1)))
long_str_arr2 = roundtrip(long_str_arr)
assert_array_equal(long_str_arr, long_str_arr2)