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,8 +1,11 @@
try:
import array
import uarray as array
except ImportError:
print("SKIP")
raise SystemExit
try:
import array
except ImportError:
print("SKIP")
raise SystemExit
a = array.array('B', [1, 2, 3])
print(a, len(a))