blob: 08cf2ef2d1c3c373dec2a2b10d61f4f4f2cb1fcb (
plain)
1
2
3
4
5
6
7
8
9
10
|
"""
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)
|