circuitpython/tests/cpydiff/modules_array_subscrstep.py
Scott Shawcroft b057fb8a4b
codeformat
2021-04-19 22:22:44 -07:00

11 lines
192 B
Python

"""
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])