From d6e6f8b82960d1af5dfbe90af14568258401f203 Mon Sep 17 00:00:00 2001 From: Berker Peksag Date: Sun, 1 May 2016 11:27:37 +0300 Subject: [PATCH] Issue #26898: Fix typo in math.isclose() docstring Patch by Marco Buttu. --- Modules/mathmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/mathmodule.c b/Modules/mathmodule.c index a6cd15aa08f..aeb06c57f33 100644 --- a/Modules/mathmodule.c +++ b/Modules/mathmodule.c @@ -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"