From 6f4952004207a249a437dc822c5252422f63cc69 Mon Sep 17 00:00:00 2001 From: Damien George Date: Sat, 13 Jun 2015 21:56:23 +0100 Subject: py: Implement second arg for math.log (optional value for base). --- tests/float/math_fun.py | 1 + 1 file changed, 1 insertion(+) (limited to 'tests/float/math_fun.py') diff --git a/tests/float/math_fun.py b/tests/float/math_fun.py index 16aec76f9..94411a36b 100644 --- a/tests/float/math_fun.py +++ b/tests/float/math_fun.py @@ -59,6 +59,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.))), ] for function_name, function, test_vals in binary_functions: -- cgit v1.2.3