mirror of
https://github.com/python/cpython.git
synced 2025-10-17 04:08:28 +00:00
Issue #21092: Merge from 3.4.
This commit is contained in:
commit
cc8617b93a
4 changed files with 13 additions and 13 deletions
|
@ -902,18 +902,18 @@ math_2(PyObject *args, double (*func) (double, double), char *funcname)
|
|||
FUNC1(acos, acos, 0,
|
||||
"acos(x)\n\nReturn the arc cosine (measured in radians) of x.")
|
||||
FUNC1(acosh, m_acosh, 0,
|
||||
"acosh(x)\n\nReturn the hyperbolic arc cosine (measured in radians) of x.")
|
||||
"acosh(x)\n\nReturn the inverse hyperbolic cosine of x.")
|
||||
FUNC1(asin, asin, 0,
|
||||
"asin(x)\n\nReturn the arc sine (measured in radians) of x.")
|
||||
FUNC1(asinh, m_asinh, 0,
|
||||
"asinh(x)\n\nReturn the hyperbolic arc sine (measured in radians) of x.")
|
||||
"asinh(x)\n\nReturn the inverse hyperbolic sine of x.")
|
||||
FUNC1(atan, atan, 0,
|
||||
"atan(x)\n\nReturn the arc tangent (measured in radians) of x.")
|
||||
FUNC2(atan2, m_atan2,
|
||||
"atan2(y, x)\n\nReturn the arc tangent (measured in radians) of y/x.\n"
|
||||
"Unlike atan(y/x), the signs of both x and y are considered.")
|
||||
FUNC1(atanh, m_atanh, 0,
|
||||
"atanh(x)\n\nReturn the hyperbolic arc tangent (measured in radians) of x.")
|
||||
"atanh(x)\n\nReturn the inverse hyperbolic tangent of x.")
|
||||
|
||||
static PyObject * math_ceil(PyObject *self, PyObject *number) {
|
||||
_Py_IDENTIFIER(__ceil__);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue