Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
micropython/tests/float/math_domain_python311.py
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
26 lines (23 sloc)
681 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Tests domain errors in math functions. | |
# This is split out from math_domain.py because math.pow(0, -inf) was changed | |
# in Python 3.11, and so this test requires a .py.exp file. | |
# (See https://github.com/python/cpython/issues/88505) | |
try: | |
import math | |
except ImportError: | |
print("SKIP") | |
raise SystemExit | |
inf = float("inf") | |
for name, f in ( | |
("pow", math.pow), | |
("log", math.log), | |
("fmod", math.fmod), | |
("atan2", math.atan2), | |
("copysign", math.copysign), | |
): | |
for x in ((0, -inf),): | |
try: | |
ans = "%.4f" % f(*x) | |
except ValueError: | |
ans = "ValueError" | |
print("%s(%.4f, %.4f) = %s" % (name, x[0], x[1], ans)) |