Skip to content
Snippets Groups Projects
Commit 992284be authored by Paul Sokolovsky's avatar Paul Sokolovsky
Browse files

tests: Add test for array slice assignment.

parent cefcbb22
No related branches found
No related tags found
No related merge requests found
try:
bytearray()[:] = bytearray()
except TypeError:
print("SKIP")
import sys
sys.exit()
# test slices; only 2 argument version supported by Micro Python at the moment
x = bytearray(range(10))
# Assignment
l = bytearray(x)
l[1:3] = bytearray([10, 20])
print(l)
l = bytearray(x)
l[1:3] = bytearray([10])
print(l)
l = bytearray(x)
l[1:3] = bytearray()
print(l)
l = bytearray(x)
#del l[1:3]
print(l)
l = bytearray(x)
l[:3] = bytearray([10, 20])
print(l)
l = bytearray(x)
l[:3] = bytearray()
print(l)
l = bytearray(x)
#del l[:3]
print(l)
l = bytearray(x)
l[:-3] = bytearray([10, 20])
print(l)
l = bytearray(x)
l[:-3] = bytearray()
print(l)
l = bytearray(x)
#del l[:-3]
print(l)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment