mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Issue #26512: Clarify Integral; tidy up table of rounding functions
Based on patch by Julien.
This commit is contained in:
parent
ad1fd346b2
commit
129fe04d4d
2 changed files with 20 additions and 17 deletions
|
@ -957,8 +957,8 @@ static PyObject * math_ceil(PyObject *self, PyObject *number) {
|
|||
}
|
||||
|
||||
PyDoc_STRVAR(math_ceil_doc,
|
||||
"ceil(x)\n\nReturn the ceiling of x as an int.\n"
|
||||
"This is the smallest integral value >= x.");
|
||||
"ceil(x)\n\nReturn the ceiling of x as an Integral.\n"
|
||||
"This is the smallest integer >= x.");
|
||||
|
||||
FUNC2(copysign, copysign,
|
||||
"copysign(x, y)\n\nReturn a float with the magnitude (absolute value) "
|
||||
|
@ -997,8 +997,8 @@ static PyObject * math_floor(PyObject *self, PyObject *number) {
|
|||
}
|
||||
|
||||
PyDoc_STRVAR(math_floor_doc,
|
||||
"floor(x)\n\nReturn the floor of x as an int.\n"
|
||||
"This is the largest integral value <= x.");
|
||||
"floor(x)\n\nReturn the floor of x as an Integral.\n"
|
||||
"This is the largest integer <= x.");
|
||||
|
||||
FUNC1A(gamma, m_tgamma,
|
||||
"gamma(x)\n\nGamma function at x.")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue