Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
cc8617b9
Kaydet (Commit)
cc8617b9
authored
Ock 11, 2015
tarafından
Mark Dickinson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #21092: Merge from 3.4.
üst
a5d0c7c2
dfe0b232
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
13 deletions
+13
-13
cmath.rst
Doc/library/cmath.rst
+4
-4
cmathmodule.c.h
Modules/clinic/cmathmodule.c.h
+3
-3
cmathmodule.c
Modules/cmathmodule.c
+3
-3
mathmodule.c
Modules/mathmodule.c
+3
-3
No files found.
Doc/library/cmath.rst
Dosyayı görüntüle @
cc8617b9
...
@@ -149,13 +149,13 @@ Hyperbolic functions
...
@@ -149,13 +149,13 @@ Hyperbolic functions
.. function:: acosh(x)
.. function:: acosh(x)
Return the
hyperbolic arc cosine of *x*. There is one branch cut, extending left
Return the
inverse hyperbolic cosine of *x*. There is one branch cut,
from 1 along the real axis to -∞, continuous from above.
extending left
from 1 along the real axis to -∞, continuous from above.
.. function:: asinh(x)
.. function:: asinh(x)
Return the
hyperbolic ar
c sine of *x*. There are two branch cuts:
Return the
inverse hyperboli
c sine of *x*. There are two branch cuts:
One extends from ``1j`` along the imaginary axis to ``∞j``,
One extends from ``1j`` along the imaginary axis to ``∞j``,
continuous from the right. The other extends from ``-1j`` along
continuous from the right. The other extends from ``-1j`` along
the imaginary axis to ``-∞j``, continuous from the left.
the imaginary axis to ``-∞j``, continuous from the left.
...
@@ -163,7 +163,7 @@ Hyperbolic functions
...
@@ -163,7 +163,7 @@ Hyperbolic functions
.. function:: atanh(x)
.. function:: atanh(x)
Return the
hyperbolic ar
c tangent of *x*. There are two branch cuts: One
Return the
inverse hyperboli
c tangent of *x*. There are two branch cuts: One
extends from ``1`` along the real axis to ``∞``, continuous from below. The
extends from ``1`` along the real axis to ``∞``, continuous from below. The
other extends from ``-1`` along the real axis to ``-∞``, continuous from
other extends from ``-1`` along the real axis to ``-∞``, continuous from
above.
above.
...
...
Modules/clinic/cmathmodule.c.h
Dosyayı görüntüle @
cc8617b9
...
@@ -49,7 +49,7 @@ PyDoc_STRVAR(cmath_acosh__doc__,
...
@@ -49,7 +49,7 @@ PyDoc_STRVAR(cmath_acosh__doc__,
"acosh($module, z, /)
\n
"
"acosh($module, z, /)
\n
"
"--
\n
"
"--
\n
"
"
\n
"
"
\n
"
"Return the
hyperbolic arc
cosine of z."
);
"Return the
inverse hyperbolic
cosine of z."
);
#define CMATH_ACOSH_METHODDEF \
#define CMATH_ACOSH_METHODDEF \
{"acosh", (PyCFunction)cmath_acosh, METH_VARARGS, cmath_acosh__doc__},
{"acosh", (PyCFunction)cmath_acosh, METH_VARARGS, cmath_acosh__doc__},
...
@@ -135,7 +135,7 @@ PyDoc_STRVAR(cmath_asinh__doc__,
...
@@ -135,7 +135,7 @@ PyDoc_STRVAR(cmath_asinh__doc__,
"asinh($module, z, /)
\n
"
"asinh($module, z, /)
\n
"
"--
\n
"
"--
\n
"
"
\n
"
"
\n
"
"Return the
hyperbolic ar
c sine of z."
);
"Return the
inverse hyperboli
c sine of z."
);
#define CMATH_ASINH_METHODDEF \
#define CMATH_ASINH_METHODDEF \
{"asinh", (PyCFunction)cmath_asinh, METH_VARARGS, cmath_asinh__doc__},
{"asinh", (PyCFunction)cmath_asinh, METH_VARARGS, cmath_asinh__doc__},
...
@@ -221,7 +221,7 @@ PyDoc_STRVAR(cmath_atanh__doc__,
...
@@ -221,7 +221,7 @@ PyDoc_STRVAR(cmath_atanh__doc__,
"atanh($module, z, /)
\n
"
"atanh($module, z, /)
\n
"
"--
\n
"
"--
\n
"
"
\n
"
"
\n
"
"Return the
hyperbolic ar
c tangent of z."
);
"Return the
inverse hyperboli
c tangent of z."
);
#define CMATH_ATANH_METHODDEF \
#define CMATH_ATANH_METHODDEF \
{"atanh", (PyCFunction)cmath_atanh, METH_VARARGS, cmath_atanh__doc__},
{"atanh", (PyCFunction)cmath_atanh, METH_VARARGS, cmath_atanh__doc__},
...
...
Modules/cmathmodule.c
Dosyayı görüntüle @
cc8617b9
...
@@ -207,7 +207,7 @@ static Py_complex acosh_special_values[7][7];
...
@@ -207,7 +207,7 @@ static Py_complex acosh_special_values[7][7];
/*[clinic input]
/*[clinic input]
cmath.acosh = cmath.acos
cmath.acosh = cmath.acos
Return the
hyperbolic arc
cosine of z.
Return the
inverse hyperbolic
cosine of z.
[clinic start generated code]*/
[clinic start generated code]*/
static
Py_complex
static
Py_complex
...
@@ -262,7 +262,7 @@ static Py_complex asinh_special_values[7][7];
...
@@ -262,7 +262,7 @@ static Py_complex asinh_special_values[7][7];
/*[clinic input]
/*[clinic input]
cmath.asinh = cmath.acos
cmath.asinh = cmath.acos
Return the
hyperbolic ar
c sine of z.
Return the
inverse hyperboli
c sine of z.
[clinic start generated code]*/
[clinic start generated code]*/
static
Py_complex
static
Py_complex
...
@@ -353,7 +353,7 @@ static Py_complex atanh_special_values[7][7];
...
@@ -353,7 +353,7 @@ static Py_complex atanh_special_values[7][7];
/*[clinic input]
/*[clinic input]
cmath.atanh = cmath.acos
cmath.atanh = cmath.acos
Return the
hyperbolic ar
c tangent of z.
Return the
inverse hyperboli
c tangent of z.
[clinic start generated code]*/
[clinic start generated code]*/
static
Py_complex
static
Py_complex
...
...
Modules/mathmodule.c
Dosyayı görüntüle @
cc8617b9
...
@@ -902,18 +902,18 @@ math_2(PyObject *args, double (*func) (double, double), char *funcname)
...
@@ -902,18 +902,18 @@ math_2(PyObject *args, double (*func) (double, double), char *funcname)
FUNC1
(
acos
,
acos
,
0
,
FUNC1
(
acos
,
acos
,
0
,
"acos(x)
\n\n
Return the arc cosine (measured in radians) of x."
)
"acos(x)
\n\n
Return the arc cosine (measured in radians) of x."
)
FUNC1
(
acosh
,
m_acosh
,
0
,
FUNC1
(
acosh
,
m_acosh
,
0
,
"acosh(x)
\n\n
Return the
hyperbolic arc cosine (measured in radians)
of x."
)
"acosh(x)
\n\n
Return the
inverse hyperbolic cosine
of x."
)
FUNC1
(
asin
,
asin
,
0
,
FUNC1
(
asin
,
asin
,
0
,
"asin(x)
\n\n
Return the arc sine (measured in radians) of x."
)
"asin(x)
\n\n
Return the arc sine (measured in radians) of x."
)
FUNC1
(
asinh
,
m_asinh
,
0
,
FUNC1
(
asinh
,
m_asinh
,
0
,
"asinh(x)
\n\n
Return the
hyperbolic arc sine (measured in radians)
of x."
)
"asinh(x)
\n\n
Return the
inverse hyperbolic sine
of x."
)
FUNC1
(
atan
,
atan
,
0
,
FUNC1
(
atan
,
atan
,
0
,
"atan(x)
\n\n
Return the arc tangent (measured in radians) of x."
)
"atan(x)
\n\n
Return the arc tangent (measured in radians) of x."
)
FUNC2
(
atan2
,
m_atan2
,
FUNC2
(
atan2
,
m_atan2
,
"atan2(y, x)
\n\n
Return the arc tangent (measured in radians) of y/x.
\n
"
"atan2(y, x)
\n\n
Return the arc tangent (measured in radians) of y/x.
\n
"
"Unlike atan(y/x), the signs of both x and y are considered."
)
"Unlike atan(y/x), the signs of both x and y are considered."
)
FUNC1
(
atanh
,
m_atanh
,
0
,
FUNC1
(
atanh
,
m_atanh
,
0
,
"atanh(x)
\n\n
Return the
hyperbolic arc tangent (measured in radians)
of x."
)
"atanh(x)
\n\n
Return the
inverse hyperbolic tangent
of x."
)
static
PyObject
*
math_ceil
(
PyObject
*
self
,
PyObject
*
number
)
{
static
PyObject
*
math_ceil
(
PyObject
*
self
,
PyObject
*
number
)
{
_Py_IDENTIFIER
(
__ceil__
);
_Py_IDENTIFIER
(
__ceil__
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment