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

Patch by Marco Buttu.
This commit is contained in:
Berker Peksag 2016-05-01 11:27:59 +03:00
commit a2570626c8
1 changed files with 1 additions and 1 deletions

View File

@ -2046,7 +2046,7 @@ math_isclose(PyObject *self, PyObject *args, PyObject *kwargs)
}
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"
"Determine whether two floating point numbers are close in value.\n"
"\n"