Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | tests/basics: Convert "sys.exit()" to "raise SystemExit". | Paul Sokolovsky | 2017-06-10 |
| | |||
* | tests/basics: Add memoryview test for big ints. | Damien George | 2017-05-09 |
| | |||
* | tests/basic/: Make various tests skippable. | Paul Sokolovsky | 2017-02-15 |
| | | | | To run the testsuite on small ports. | ||
* | tests: Disable memoryview tests that overflow int conversion. | Damien George | 2016-05-07 |
| | | | | They fail on builds with 32-bit word size. | ||
* | py/objstr: Binary type of str/bytes for buffer protocol is 'B'. | Damien George | 2016-05-07 |
The type is an unsigned 8-bit value, since bytes objects are exactly that. And it's also sensible for unicode strings to return unsigned values when accessed in a byte-wise manner (CPython does not allow this). |