summaryrefslogtreecommitdiff
path: root/tests/basics/int_bytes_intbig.py
AgeCommit message (Collapse)Author
2020-02-14Implement to_bytes(..., signed=True)Dan Halbert
2019-05-09Add tests for overflows converting ints to bytesMatt Wozniski
2017-08-25Initial merge of micropython v1.9.2 into circuitpython 2.0.0 (in ↵Dan Halbert
development) master. cpx build compiles and loads and works in repl; test suite not run yet esp8266 not tested yet
2017-08-11Turn on Rosie CI testing to test new builds on real hardware.Scott Shawcroft
This introduces a skip_if module that can be used by tests to determine when they should be skipped due to the environment. Some tests have been split in order to have finer grained skip control.
2017-06-15py/objint: Support "big" byte-order in int.to_bytes().Damien George
2017-04-25tests/basics: Add tests for int.from_bytes when src has trailing zeros.Damien George
The trailing zeros should be truncated from the converted value.
2017-03-04tests/basic: Split tests into working with small ints and not working.Paul Sokolovsky
Tests which don't work with small ints are suffixed with _intbig.py. Some of these may still work with long long ints and need to be reclassified later.