mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Issue #26898: Fix typo in math.isclose() docstring
Patch by Marco Buttu.
This commit is contained in:
parent
ec766d3c15
commit
d6e6f8b829
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,
|
||||
"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"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue