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

12 lines
177 B
Python

"""
categories: Modules,array
description: Array deletion not implemented
cause: Unknown
workaround: Unknown
"""
import array
a = array.array("b", (1, 2, 3))
del a[1]
print(a)