We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44f8bdc commit ff7517aCopy full SHA for ff7517a
unittest/python/test_std_array.py
@@ -5,6 +5,8 @@
5
print(ints[0])
6
print(ints[1])
7
print(ints[2])
8
+print(ints.tolist())
9
+assert ints.tolist() == [1, 2, 3]
10
11
_ints_slice = ints[1:3]
12
print("Printing slice...")
0 commit comments