summaryrefslogtreecommitdiff
path: root/tests/cpydiff/modules_array_subscrstep.py
blob: 24308bd9042d1ac5646ae6b73fa311b627adb58b (plain)
1
2
3
4
5
6
7
8
9
10
"""
categories: Modules,array
description: Subscript with step != 1 is not yet implemented
cause: Unknown
workaround: Unknown
"""
import array

a = array.array("b", (1, 2, 3))
print(a[3:2:2])