Documentation
In the documentation of math.isclose it states
When comparing x to 0.0, isclose(x, 0) is computed as abs(x) <= rel_tol * abs(x), which is False for any x and rel_tol less than 1.0.
The statement isn't correct since x = 0 will give True
Linked PRs
Documentation
In the documentation of math.isclose it states
The statement isn't correct since x = 0 will give True
Linked PRs
math.isclosedocs (GH-131139) #131392math.isclosedocs (GH-131139) #131393