Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | tests: Replace umodule with module everywhere. | Jim Mussared | 2023-06-08 |
| | | | | | | This work was funded through GitHub Sponsors. Signed-off-by: Jim Mussared <jim.mussared@gmail.com> | ||
* | 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/array*: Allow to skip test if "array" is unavailable. | Paul Sokolovsky | 2017-01-07 |
| | |||
* | tests: Split byteorder-dependent tests to *_endian.py's. | Paul Sokolovsky | 2015-08-30 |
| | |||
* | tests: Skip some new tests when testing native emitter. | Damien George | 2015-03-25 |
| | |||
* | tests: Add tests for SyntaxError, TypeError, and other missing things. | Damien George | 2015-03-25 |
| | | | | This is intended to improve coverage of the test suite. | ||
* | tests: Separate out test cases that rely on float support to float/ dir. | Damien George | 2015-01-08 |
| | |||
* | py: Allow bytes/bytearray/array to be init'd by buffer protocol objects. | Damien George | 2014-12-04 |
Behaviour of array initialisation is subtly different for bytes, bytearray and array.array when argument has buffer protocol. This patch gets us CPython conformant (except we allow initialisation of array.array by buffer with length not a multiple of typecode). |