summaryrefslogtreecommitdiffstatshomepage
path: root/tests/float/math-fun-bool.py
blob: cf718d4b80bcb6c3497295ba997c9d90f67863ef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# Test the bool functions from math

from math import isfinite, isnan, isinf

test_values = [1, 0, -1, 1.0, 0.0, -1.0, float('NaN'), float('Inf'), 
               -float('NaN'), -float('Inf')]

functions = [isfinite, isnan, isinf]

for val in test_values:
    for f in functions:
        print(f(val))