tests/basics/memoryview_itemsize: Make portable to 32- and 64-bit archs.

pull/1/head
Damien George 2019-12-13 15:38:03 +11:00
parent 33b0a7e601
commit 1098d1d630
1 changed files with 4 additions and 1 deletions

View File

@ -12,9 +12,12 @@ except ImportError:
print("SKIP")
raise SystemExit
for code in ['b', 'h', 'i', 'l', 'q', 'f', 'd']:
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