tests: Rename "array" module to "uarray".

This commit is contained in:
Damien George
2019-10-22 17:33:23 +11:00
parent a2eea57b1d
commit 30e25174bb
26 changed files with 152 additions and 63 deletions

View File

@@ -1,10 +1,13 @@
# test construction of array.array from different objects
try:
from array import array
from uarray import array
except ImportError:
print("SKIP")
raise SystemExit
try:
from array import array
except ImportError:
print("SKIP")
raise SystemExit
# tuple, list
print(array('b', (1, 2)))