This website requires JavaScript.
Explore
Help
Register
Sign In
fengqi
/
lv_micropython
Watch
1
Star
0
Fork
0
You've already forked lv_micropython
Code
Issues
Pull Requests
1
Actions
Packages
Projects
Releases
Wiki
Activity
lv_micropython
/
tests
/
extmod
/
machine1.py.exp
9 lines
87 B
Plaintext
Raw
Normal View
History
Unescape
Escape
tests: Add test for machine module (mem* functions).
2015-05-08 00:18:28 +01:00
<8-bit memory>
ValueError
ValueError
TypeError
extmod/machine_mem: Only allow integers in machine.memX subscript. Prior to this change machine.mem32['foo'] (or using any other non-integer subscript) could result in a fault due to 'foo' being interpreted as an integer. And when writing code it's hard to tell if the fault is due to a bad subscript type, or an integer subscript that specifies an invalid memory address. The type of the object used in the subscript is now tested to be an integer by using mp_obj_get_int_truncated instead of mp_obj_int_get_truncated. The performance hit of this change is minimal, and machine.memX objects are more for convenience than performance (there are many other ways to read/write memory in a faster way), Fixes issue #6588.
2020-10-31 13:34:58 +11:00
TypeError
TypeError
TypeError
TypeError
Reference in New Issue
Copy Permalink