summaryrefslogtreecommitdiffstats
path: root/Modules/cmathmodule.c
diff options
context:
space:
mode:
authorOwain Davies <116417456+OTheDev@users.noreply.github.com>2023-02-19 15:00:59 (GMT)
committerGitHub <noreply@github.com>2023-02-19 15:00:59 (GMT)
commit71f614ef2a3d66213b9cae807cbbc1ed03741221 (patch)
treeaa85ddbd736cfef09c35e862f9d6c09b4d88c1cc /Modules/cmathmodule.c
parent9a07eff628c1cd88b7cdda88a8fd0db3fe7ea552 (diff)
downloadcpython-71f614ef2a3d66213b9cae807cbbc1ed03741221.zip
cpython-71f614ef2a3d66213b9cae807cbbc1ed03741221.tar.gz
cpython-71f614ef2a3d66213b9cae807cbbc1ed03741221.tar.bz2
Add missing 'is' to `cmath.log()` docstring (#102049)
Fix missing 'is' in cmath.log() docstring
Diffstat (limited to 'Modules/cmathmodule.c')
-rw-r--r--Modules/cmathmodule.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/cmathmodule.c b/Modules/cmathmodule.c
index 2038ac2..53e3406 100644
--- a/Modules/cmathmodule.c
+++ b/Modules/cmathmodule.c
@@ -957,12 +957,12 @@ cmath.log
log(z[, base]) -> the logarithm of z to the given base.
-If the base not specified, returns the natural logarithm (base e) of z.
+If the base is not specified, returns the natural logarithm (base e) of z.
[clinic start generated code]*/
static PyObject *
cmath_log_impl(PyObject *module, Py_complex x, PyObject *y_obj)
-/*[clinic end generated code: output=4effdb7d258e0d94 input=230ed3a71ecd000a]*/
+/*[clinic end generated code: output=4effdb7d258e0d94 input=e1f81d4fcfd26497]*/
{
Py_complex y;