mirror of
https://github.com/python/cpython.git
synced 2025-09-27 10:50:04 +00:00
Fix cut-and-paste typo in comment: log10 -> log2.
This commit is contained in:
parent
7c038b4726
commit
23442584f4
1 changed files with 1 additions and 1 deletions
|
@ -622,7 +622,7 @@ m_log2(double x)
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
errno = EDOM;
|
errno = EDOM;
|
||||||
return Py_NAN; /* log10(-inf) = nan, invalid-operation */
|
return Py_NAN; /* log2(-inf) = nan, invalid-operation */
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue