diff options
author | Jan Klusacek <honza.klu@gmail.com> | 2018-01-09 22:47:35 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2018-05-22 14:18:16 +1000 |
commit | b318ebf1015ced6354f8bbaf035308214b3f5c5d (patch) | |
tree | 07d98e13d450884a046ff822702f787d76c2ba7a /tests/basics/builtin_round_int.py | |
parent | f2ec7925542e5a75b2da7ef378f5df66fdb6fad9 (diff) | |
download | micropython-b318ebf1015ced6354f8bbaf035308214b3f5c5d.tar.gz micropython-b318ebf1015ced6354f8bbaf035308214b3f5c5d.zip |
py/modbuiltins: Add support for rounding integers.
As per CPython semantics. This feature is controlled by
MICROPY_PY_BUILTINS_ROUND_INT which is disabled by default.
Diffstat (limited to 'tests/basics/builtin_round_int.py')
-rw-r--r-- | tests/basics/builtin_round_int.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/basics/builtin_round_int.py b/tests/basics/builtin_round_int.py new file mode 100644 index 0000000000..a2017622a7 --- /dev/null +++ b/tests/basics/builtin_round_int.py @@ -0,0 +1,18 @@ +# test round() with integer values and second arg + +# rounding integers is an optional feature so test for it +try: + round(1, -1) +except NotImplementedError: + print('SKIP') + raise SystemExit + +tests = [ + (1, False), (1, True), + (124, -1), (125, -1), (126, -1), + (5, -1), (15, -1), (25, -1), + (12345, 0), (12345, -1), (12345, 1), + (-1234, 0), (-1234, -1), (-1234, 1), +] +for t in tests: + print(round(*t)) |