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,9 +1,12 @@
# test array + array
try:
import array
import uarray as array
except ImportError:
print("SKIP")
raise SystemExit
try:
import array
except ImportError:
print("SKIP")
raise SystemExit
a1 = array.array('I', [1])
a2 = array.array('I', [2])