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.
10 lines
311 B
10 lines
311 B
"""
|
|
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)
|
|
|