summaryrefslogtreecommitdiff
path: root/tests/cpydiff/modules_array_deletion.py
blob: 2e7c31124b2da6c9c332fd0ed358df506b9d0878 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
"""
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)