cpython (merge 3.5 -> default): Issue #26898: Fix typo in math.isclose() docstring
![](https://secure.gravatar.com/avatar/8ac615df352a970211b0e3d94a307c6d.jpg?s=120&d=mm&r=g)
https://hg.python.org/cpython/rev/634764b4675c changeset: 101198:634764b4675c parent: 101196:94471357db08 parent: 101197:469bc90e8922 user: Berker Peksag <berker.peksag@gmail.com> date: Sun May 01 11:27:59 2016 +0300 summary: Issue #26898: Fix typo in math.isclose() docstring Patch by Marco Buttu. files: Modules/mathmodule.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Modules/mathmodule.c b/Modules/mathmodule.c --- a/Modules/mathmodule.c +++ b/Modules/mathmodule.c @@ -2046,7 +2046,7 @@ } 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" -- Repository URL: https://hg.python.org/cpython
participants (1)
-
berker.peksag