Files
TencentOS-tiny/components/language/micropython/tests/float/math_constants_extra.py
2022-09-29 12:10:37 +08:00

18 lines
372 B
Python

# 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))