diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2016-05-01 08:27:37 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2016-05-01 08:27:37 (GMT) |
commit | d6e6f8b82960d1af5dfbe90af14568258401f203 (patch) | |
tree | 17e43d2f32c768208861803595a7489c32b76407 /Modules/mathmodule.c | |
parent | ec766d3c159e0526db641505dbdf0a7f4271e5e4 (diff) | |
download | cpython-d6e6f8b82960d1af5dfbe90af14568258401f203.zip cpython-d6e6f8b82960d1af5dfbe90af14568258401f203.tar.gz cpython-d6e6f8b82960d1af5dfbe90af14568258401f203.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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/mathmodule.c b/Modules/mathmodule.c index a6cd15a..aeb06c5 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" |