summaryrefslogtreecommitdiffstats
path: root/Modules/mathmodule.c
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2016-05-01 08:27:59 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2016-05-01 08:27:59 (GMT)
commita2570626c8f2ff74caa558a20cc975dde6752f47 (patch)
tree88d32b359a0857ece5cc886fb27e1792ab97de32 /Modules/mathmodule.c
parentaa9d36970758ab4076e1625123bd2d8eb55cbe8a (diff)
parentd6e6f8b82960d1af5dfbe90af14568258401f203 (diff)
downloadcpython-a2570626c8f2ff74caa558a20cc975dde6752f47.zip
cpython-a2570626c8f2ff74caa558a20cc975dde6752f47.tar.gz
cpython-a2570626c8f2ff74caa558a20cc975dde6752f47.tar.bz2
Issue #26898: Fix typo in math.isclose() docstring
Patch by Marco Buttu.
Diffstat (limited to 'Modules/mathmodule.c')
-rw-r--r--Modules/mathmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/mathmodule.c b/Modules/mathmodule.c
index 7bbcf58..50f860b 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"