diff options
author | Damien George <damien.p.george@gmail.com> | 2017-07-04 02:15:11 +1000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2017-07-04 02:15:11 +1000 |
commit | 6b8b56f8596d3dde544a72d037e9feddd9f70938 (patch) | |
tree | 2f38350492210f01e6347e3e9332f8f37e4be3b9 /tests | |
parent | 9ed5e80eea71c8392b7c178d2e2b69e2428850d8 (diff) | |
download | micropython-6b8b56f8596d3dde544a72d037e9feddd9f70938.tar.gz micropython-6b8b56f8596d3dde544a72d037e9feddd9f70938.zip |
py/modmath: Check for zero division in log with 2 args.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/float/math_fun.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/float/math_fun.py b/tests/float/math_fun.py index 80d20bd8a5..2835b9bfbd 100644 --- a/tests/float/math_fun.py +++ b/tests/float/math_fun.py @@ -51,7 +51,7 @@ binary_functions = [('copysign', copysign, [(23., 42.), (-23., 42.), (23., -42.) ('atan2', atan2, ((1., 0.), (0., 1.), (2., 0.5), (-3., 5.), (-3., -4.),)), ('fmod', fmod, ((1., 1.), (0., 1.), (2., 0.5), (-3., 5.), (-3., -4.),)), ('ldexp', ldexp, ((1., 0), (0., 1), (2., 2), (3., -2), (-3., -4),)), - ('log', log, ((2., 2.), (3., 2.), (4., 5.), (0., 1.), (1., 0.), (-1., 1.), (1., -1.))), + ('log', log, ((2., 2.), (3., 2.), (4., 5.), (0., 1.), (1., 0.), (-1., 1.), (1., -1.), (2., 1.))), ] for function_name, function, test_vals in binary_functions: @@ -59,5 +59,5 @@ for function_name, function, test_vals in binary_functions: for value1, value2 in test_vals: try: print("{:.5g}".format(function(value1, value2))) - except ValueError as e: - print(str(e)) + except (ValueError, ZeroDivisionError) as e: + print(type(e)) |