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
a5d0c7c2
Kaydet (Commit)
a5d0c7c2
authored
Ock 11, 2015
tarafından
Mark Dickinson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #23185: add math.inf and math.nan constants.
üst
845b14cc
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
69 additions
and
1 deletion
+69
-1
math.rst
Doc/library/math.rst
+16
-0
3.5.rst
Doc/whatsnew/3.5.rst
+6
-0
test_math.py
Lib/test/test_math.py
+11
-0
NEWS
Misc/NEWS
+2
-0
mathmodule.c
Modules/mathmodule.c
+34
-1
No files found.
Doc/library/math.rst
Dosyayı görüntüle @
a5d0c7c2
...
...
@@ -383,6 +383,22 @@ Constants
The mathematical constant e = 2.718281..., to available precision.
.. data:: inf
A floating-point positive infinity. (For negative infinity, use
``-math.inf``.) Equivalent to the output of ``float('inf')``.
.. versionadded:: 3.5
.. data:: nan
A floating-point "not a number" (NaN) value. Equivalent to the output of
``float('nan')``.
.. versionadded:: 3.5
.. impl-detail::
The :mod:`math` module consists mostly of thin wrappers around the platform C
...
...
Doc/whatsnew/3.5.rst
Dosyayı görüntüle @
a5d0c7c2
...
...
@@ -243,6 +243,12 @@ re
* Now unmatched groups are replaced with empty strings in :func:`re.sub`
and :func:`re.subn`. (Contributed by Serhiy Storchaka in :issue:`1519638`.)
math
----
* :data:`math.inf` and :data:`math.nan` constants added. (Contributed by Mark
Dickinson in :issue:`23185`.)
shutil
------
...
...
Lib/test/test_math.py
Dosyayı görüntüle @
a5d0c7c2
...
...
@@ -983,6 +983,17 @@ class MathTests(unittest.TestCase):
self
.
assertFalse
(
math
.
isinf
(
0.
))
self
.
assertFalse
(
math
.
isinf
(
1.
))
@requires_IEEE_754
def
test_nan_constant
(
self
):
self
.
assertTrue
(
math
.
isnan
(
math
.
nan
))
@requires_IEEE_754
def
test_inf_constant
(
self
):
self
.
assertTrue
(
math
.
isinf
(
math
.
inf
))
self
.
assertGreater
(
math
.
inf
,
0.0
)
self
.
assertEqual
(
math
.
inf
,
float
(
"inf"
))
self
.
assertEqual
(
-
math
.
inf
,
float
(
"-inf"
))
# RED_FLAG 16-Oct-2000 Tim
# While 2.0 is more consistent about exceptions than previous releases, it
# still fails this part of the test on some platforms. For now, we only
...
...
Misc/NEWS
Dosyayı görüntüle @
a5d0c7c2
...
...
@@ -203,6 +203,8 @@ Core and Builtins
Library
-------
-
Issue
#
23185
:
Add
math
.
inf
and
math
.
nan
constants
.
-
Issue
#
23186
:
Add
ssl
.
SSLObject
.
shared_ciphers
()
and
ssl
.
SSLSocket
.
shared_ciphers
()
to
fetch
the
client
's list ciphers sent at
handshake.
...
...
Modules/mathmodule.c
Dosyayı görüntüle @
a5d0c7c2
...
...
@@ -223,6 +223,35 @@ lanczos_sum(double x)
return
num
/
den
;
}
/* Constant for +infinity, generated in the same way as float('inf'). */
static
double
m_inf
(
void
)
{
#ifndef PY_NO_SHORT_FLOAT_REPR
return
_Py_dg_infinity
(
0
);
#else
return
Py_HUGE_VAL
;
#endif
}
/* Constant nan value, generated in the same way as float('nan'). */
/* We don't currently assume that Py_NAN is defined everywhere. */
#if !defined(PY_NO_SHORT_FLOAT_REPR) || defined(Py_NAN)
static
double
m_nan
(
void
)
{
#ifndef PY_NO_SHORT_FLOAT_REPR
return
_Py_dg_stdnan
(
0
);
#else
return
Py_NAN
;
#endif
}
#endif
static
double
m_tgamma
(
double
x
)
{
...
...
@@ -2009,7 +2038,11 @@ PyInit_math(void)
PyModule_AddObject
(
m
,
"pi"
,
PyFloat_FromDouble
(
Py_MATH_PI
));
PyModule_AddObject
(
m
,
"e"
,
PyFloat_FromDouble
(
Py_MATH_E
));
PyModule_AddObject
(
m
,
"inf"
,
PyFloat_FromDouble
(
m_inf
()));
#if !defined(PY_NO_SHORT_FLOAT_REPR) || defined(Py_NAN)
PyModule_AddObject
(
m
,
"nan"
,
PyFloat_FromDouble
(
m_nan
()));
#endif
finally:
finally:
return
m
;
}
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