Commit a2570626 authored by Berker Peksag's avatar Berker Peksag

Issue #26898: Fix typo in math.isclose() docstring

Patch by Marco Buttu.
parents aa9d3697 d6e6f8b8
...@@ -2046,7 +2046,7 @@ math_isclose(PyObject *self, PyObject *args, PyObject *kwargs) ...@@ -2046,7 +2046,7 @@ math_isclose(PyObject *self, PyObject *args, PyObject *kwargs)
} }
PyDoc_STRVAR(math_isclose_doc, PyDoc_STRVAR(math_isclose_doc,
"is_close(a, b, *, rel_tol=1e-09, abs_tol=0.0) -> bool\n" "isclose(a, b, *, rel_tol=1e-09, abs_tol=0.0) -> bool\n"
"\n" "\n"
"Determine whether two floating point numbers are close in value.\n" "Determine whether two floating point numbers are close in value.\n"
"\n" "\n"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment