diff options
author | Damien George <damien.p.george@gmail.com> | 2019-10-22 17:33:23 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2019-10-22 19:16:54 +1100 |
commit | 30e25174bbf077e8a3cbe2a3a6a97795f8d67dc2 (patch) | |
tree | e613397f3a1bd429c8774093ef2319aba5d1c9d1 /tests/inlineasm/asmsum.py | |
parent | a2eea57b1d5456696598703aa4ffdbc7e9fb52ea (diff) |
tests: Rename "array" module to "uarray".
Diffstat (limited to 'tests/inlineasm/asmsum.py')
-rw-r--r-- | tests/inlineasm/asmsum.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/inlineasm/asmsum.py b/tests/inlineasm/asmsum.py index 9cbd8418e..93d8eec8d 100644 --- a/tests/inlineasm/asmsum.py +++ b/tests/inlineasm/asmsum.py @@ -46,7 +46,7 @@ def asm_sum_bytes(r0, r1): mov(r0, r2) -import array +import uarray as array b = array.array('l', (100, 200, 300, 400)) n = asm_sum_words(len(b), b) |