We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ab8806 commit c4ed17fCopy full SHA for c4ed17f
tests/cpydiff/module_array_constructor.py
@@ -0,0 +1,10 @@
1
+"""
2
+categories: Modules,array
3
+description: Overflow checking is not implemented
4
+cause: MicroPython implements implicit truncation in order to reduce code size and execution time
5
+workaround: If CPython compatibility is needed then mask the value explicitly
6
7
+import array
8
+
9
+a = array.array("b", [257])
10
+print(a)
0 commit comments