micropython/tests/basics/memoryview_itemsize.py
Jim Mussared 4216bc7d13 tests: Replace umodule with module everywhere.
This work was funded through GitHub Sponsors.

Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
2023-06-08 17:54:24 +10:00

23 lines
510 B
Python

try:
memoryview(b'a').itemsize
except:
print("SKIP")
raise SystemExit
try:
from array import array
except ImportError:
print("SKIP")
raise SystemExit
for code in ['b', 'h', 'i', 'q', 'f', 'd']:
print(memoryview(array(code)).itemsize)
# 'l' varies depending on word size of the machine
print(memoryview(array('l')).itemsize in (4, 8))
# shouldn't be able to store to the itemsize attribute
try:
memoryview(b'a').itemsize = 1
except AttributeError:
print('AttributeError')