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
2bf405ad
Kaydet (Commit)
2bf405ad
authored
Eki 12, 2000
tarafından
Tim Peters
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Repaired a comment and asserted a precondition.
üst
20d529be
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
mathmodule.c
Modules/mathmodule.c
+2
-1
No files found.
Modules/mathmodule.c
Dosyayı görüntüle @
2bf405ad
...
...
@@ -18,7 +18,7 @@ extern double modf (double, double *);
#endif
/* RED_FLAG 12-Oct-2000 Tim
* What CHECK does if errno
!
= 0 and x is a NaN is a platform-dependent crap
* What CHECK does if errno
=
= 0 and x is a NaN is a platform-dependent crap
* shoot. Most (but not all!) platforms will end up setting errno to ERANGE
* then, but EDOM is probably better.
*/
...
...
@@ -38,6 +38,7 @@ static int
is_error
(
double
x
)
{
int
result
=
1
;
/* presumption of guilt */
assert
(
errno
);
/* non-zero errno is a precondition for calling */
if
(
errno
==
EDOM
)
PyErr_SetString
(
PyExc_ValueError
,
"math domain error"
);
else
if
(
errno
==
ERANGE
)
{
...
...
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