Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-06-08 | tests: Replace umodule with module everywhere. | Jim Mussared | |
This work was funded through GitHub Sponsors. Signed-off-by: Jim Mussared <jim.mussared@gmail.com> | |||
2020-07-21 | tests/basics: Split out memoryview slice-assign tests to separate file. | Damien George | |
Signed-off-by: Damien George <damien@micropython.org> | |||
2020-02-21 | py/objarray: Turn on MP_TYPE_FLAG_EQ_CHECKS_OTHER_TYPE for memoryview. | Jim Mussared | |
And add corresponding tests. Fixes #5674 (comparison of memoryview against bytes). | |||
2019-10-22 | tests: Rename "array" module to "uarray". | Damien George | |
2019-05-14 | tests/basics: Add coverage tests for memoryview attributes. | Damien George | |
2017-06-10 | tests/basics: Convert "sys.exit()" to "raise SystemExit". | Paul Sokolovsky | |
2017-02-27 | py/objarray: Disallow slice-assignment to read-only memoryview. | Damien George | |
Also comes with a test for this. Fixes issue #2904. | |||
2017-02-15 | tests/basic/: Make various tests skippable. | Paul Sokolovsky | |
To run the testsuite on small ports. | |||
2016-12-21 | tests: Add tests to improve coverage of objarray.c. | Rami Ali | |
2015-07-20 | py: Implement memoryview slice assignment. | Delio Brignoli | |
Adds ability to do "memcpy" with memoryview objects, such as: m1[0:3] = m2[2:5]. | |||
2015-03-25 | tests: Add tests for SyntaxError, TypeError, and other missing things. | Damien George | |
This is intended to improve coverage of the test suite. | |||
2014-10-23 | py: Add builtin memoryview object (mostly using array code). | Damien George | |