diff options
Diffstat (limited to 'tests/cpydiff/module_array_constructor.py')
-rw-r--r-- | tests/cpydiff/module_array_constructor.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/cpydiff/module_array_constructor.py b/tests/cpydiff/module_array_constructor.py index 08cf2ef2d..a53589d22 100644 --- a/tests/cpydiff/module_array_constructor.py +++ b/tests/cpydiff/module_array_constructor.py @@ -4,6 +4,7 @@ description: Overflow checking is not implemented cause: MicroPython implements implicit truncation in order to reduce code size and execution time workaround: If CPython compatibility is needed then mask the value explicitly """ + import array a = array.array("b", [257]) |