Skip to content

Commit 8e9ffd9

Browse files
mdickinsonOTheDev
andauthored
[3.10] Add missing 'is' to cmath.log() docstring (GH-102049) (#102280)
Fix missing 'is' in cmath.log() docstring. (cherry picked from commit 71f614e) Co-authored-by: Owain Davies <[email protected]>
1 parent 4732f55 commit 8e9ffd9

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
@@ -950,12 +950,12 @@ cmath.log
950950
951951
log(z[, base]) -> the logarithm of z to the given base.
952952
953-
If the base not specified, returns the natural logarithm (base e) of z.
953+
If the base is not specified, returns the natural logarithm (base e) of z.
954954
[clinic start generated code]*/
955955

956956
static PyObject *
957957
cmath_log_impl(PyObject *module, Py_complex x, PyObject *y_obj)
958-
/*[clinic end generated code: output=4effdb7d258e0d94 input=230ed3a71ecd000a]*/
958+
/*[clinic end generated code: output=4effdb7d258e0d94 input=e1f81d4fcfd26497]*/
959959
{
960960
Py_complex y;
961961

0 commit comments

Comments
 (0)