mirror of
https://github.com/micropython/micropython.git
synced 2026-01-05 03:30:14 +01:00
tests: Rename "array" module to "uarray".
This commit is contained in:
@@ -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])
|
||||
|
||||
Reference in New Issue
Block a user