From: Berker Peksag Date: Sun, 1 May 2016 08:27:37 +0000 (+0300) Subject: Issue #26898: Fix typo in math.isclose() docstring X-Git-Tag: v3.6.0a1~90^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d6e6f8b82960d1af5dfbe90af14568258401f203;p=python Issue #26898: Fix typo in math.isclose() docstring Patch by Marco Buttu. --- diff --git a/Modules/mathmodule.c b/Modules/mathmodule.c index a6cd15aa08..aeb06c57f3 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"