summaryrefslogtreecommitdiff
path: root/Modules/mathmodule.c
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2016-05-01 11:27:37 +0300
committerBerker Peksag <berker.peksag@gmail.com>2016-05-01 11:27:37 +0300
commitd6e6f8b82960d1af5dfbe90af14568258401f203 (patch)
tree17e43d2f32c768208861803595a7489c32b76407 /Modules/mathmodule.c
parentec766d3c159e0526db641505dbdf0a7f4271e5e4 (diff)
downloadcpython-git-d6e6f8b82960d1af5dfbe90af14568258401f203.tar.gz
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 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"