Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | py/objarray: Prohibit comparison of mismatching types. | stijn | 2021-05-13 |
| | | | | | | | | | Array equality is defined as each element being equal but to keep code size down MicroPython implements a binary comparison. This can only be used correctly for elements with the same binary layout though so turn it into an NotImplementedError when comparing types for which the binary comparison yielded incorrect results: types with different sizes, and floating point numbers because nan != nan. | ||
* | tests: Rename "array" module to "uarray". | Damien George | 2019-10-22 |
| | |||
* | tests/basics: Convert "sys.exit()" to "raise SystemExit". | Paul Sokolovsky | 2017-06-10 |
| | |||
* | tests/basic/[a-f]*: Make skippable. | Paul Sokolovsky | 2017-02-15 |
| | | | | For small ports which don't have all features enabled. | ||
* | tests/basics: Add tests to improve coverage of binary.c. | Rami Ali | 2016-12-28 |