Fix typo in math.log docstring (#103943)

This commit is contained in:
Wes Turner 2023-04-28 03:31:31 -04:00 committed by GitHub
parent 67d140dba7
commit 52cedc5c10
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -2314,7 +2314,7 @@ math_log(PyObject *module, PyObject * const *args, Py_ssize_t nargs)
PyDoc_STRVAR(math_log_doc, PyDoc_STRVAR(math_log_doc,
"log(x, [base=math.e])\n\ "log(x, [base=math.e])\n\
Return the logarithm of x to the given base.\n\n\ Return the logarithm of x to the given base.\n\n\
If the base not specified, returns the natural logarithm (base e) of x."); If the base is not specified, returns the natural logarithm (base e) of x.");
/*[clinic input] /*[clinic input]
math.log2 math.log2