You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
311 B
11 lines
311 B
3 years ago
|
"""
|
||
|
categories: Modules,array
|
||
|
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])
|
||
|
print(a)
|