summaryrefslogtreecommitdiffstatshomepage
path: root/tests/float/math_constants_extra.py
blob: dea49aef5a7321fb56445989cce1e7c05e2d5ba7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Tests constants of the math module available only with MICROPY_PY_MATH_CONSTANTS.
try:
    import math
    from math import isnan

    math.tau
except (ImportError, AttributeError):
    print("SKIP")
    raise SystemExit

print(math.tau == 2.0 * math.pi)

print(math.inf == float("inf"))
print(-math.inf == -float("inf"))

print(isnan(math.nan))
print(isnan(-math.nan))