mirror of
https://github.com/python/cpython.git
synced 2025-10-17 12:18:23 +00:00
Issue #26898: Fix typo in math.isclose() docstring
Patch by Marco Buttu.
This commit is contained in:
commit
a2570626c8
1 changed files with 1 additions and 1 deletions
|
@ -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"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue