Skip to content

Commit eb55659

Browse files
mdickinsonOTheDev
andauthored
[3.11] Add missing 'is' to cmath.log() docstring (GH-102049) (#102279)
Fix missing 'is' in cmath.log() docstring. (cherry picked from commit 71f614e) Co-authored-by: Owain Davies <[email protected]>
1 parent 2c4fc87 commit eb55659

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Modules/clinic/cmathmodule.c.h

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Modules/cmathmodule.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -957,12 +957,12 @@ cmath.log
957957
958958
log(z[, base]) -> the logarithm of z to the given base.
959959
960-
If the base not specified, returns the natural logarithm (base e) of z.
960+
If the base is not specified, returns the natural logarithm (base e) of z.
961961
[clinic start generated code]*/
962962

963963
static PyObject *
964964
cmath_log_impl(PyObject *module, Py_complex x, PyObject *y_obj)
965-
/*[clinic end generated code: output=4effdb7d258e0d94 input=230ed3a71ecd000a]*/
965+
/*[clinic end generated code: output=4effdb7d258e0d94 input=e1f81d4fcfd26497]*/
966966
{
967967
Py_complex y;
968968

0 commit comments

Comments
 (0)