Files
test/tools/check_blender_release/scripts/numpy_basic_operation.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
214 B
Python
Raw Normal View History

# SPDX-FileCopyrightText: 2023 Blender Authors
#
# SPDX-License-Identifier: GPL-2.0-or-later
# This code tests bug reported in #50703
import numpy
a = numpy.array([[3, 2, 0], [3, 1, 0]], dtype=numpy.int32)
a[0]