mirror of
https://github.com/python/cpython.git
synced 2025-10-17 12:18:23 +00:00
Fixed legit gripe from c.l.py that math.fmod docs aren't confusing enough.
FRED, please check my monkey-see-monkey-do Tex fiddling!
This commit is contained in:
parent
53db8154e6
commit
78fc0b57df
3 changed files with 6 additions and 3 deletions
|
@ -106,7 +106,8 @@ FUNC1(fabs, fabs,
|
|||
FUNC1(floor, floor,
|
||||
"floor(x)\n\nReturn the floor of x as a real.")
|
||||
FUNC2(fmod, fmod,
|
||||
"fmod(x,y)\n\nReturn x % y.")
|
||||
"fmod(x,y)\n\nReturn fmod(x, y), according to platform C."
|
||||
" x % y may differ.")
|
||||
FUNC2(hypot, hypot,
|
||||
"hypot(x,y)\n\nReturn the Euclidean distance, sqrt(x*x + y*y).")
|
||||
FUNC1(log, log,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue