summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/bytearray_construct.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/basics/bytearray_construct.py')
-rw-r--r--tests/basics/bytearray_construct.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/basics/bytearray_construct.py b/tests/basics/bytearray_construct.py
index 1c45f6fcf5..9c8f3adaaa 100644
--- a/tests/basics/bytearray_construct.py
+++ b/tests/basics/bytearray_construct.py
@@ -1,12 +1,6 @@
# test construction of bytearray from different objects
-from array import array
-
# bytes, tuple, list
print(bytearray(b'123'))
print(bytearray((1, 2)))
print(bytearray([1, 2]))
-
-# arrays
-print(bytearray(array('b', [1, 2])))
-print(bytearray(array('h', [0x101, 0x202])))