summaryrefslogtreecommitdiff
path: root/tests/float/int_big_float.py
AgeCommit message (Collapse)Author
2022-02-02all: Update Python formatting to latest Black version 22.1.0.Damien George
Signed-off-by: Damien George <damien@micropython.org>
2017-07-25py: Implement raising a big-int to a negative power.Damien George
Before this patch raising a big-int to a negative power would just return 0. Now it returns a floating-point number with the correct value.
2015-10-01py: Catch all cases of integer (big and small) division by zero.Damien George
2015-10-01tests: Add further tests for mpz code.Damien George
2015-03-25tests: Add tests for SyntaxError, TypeError, and other missing things.Damien George
This is intended to improve coverage of the test suite.
2015-03-03tests: Add tests for boundmeth; and bignum cmp, unary, float, error.Damien George