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
9a9faddb
Kaydet (Commit)
9a9faddb
authored
Ara 10, 1991
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Formulate better error strings.
üst
ddc0d3e0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
floatobject.c
Objects/floatobject.c
+5
-5
No files found.
Objects/floatobject.c
Dosyayı görüntüle @
9a9faddb
...
...
@@ -174,7 +174,7 @@ float_div(v, w)
return
NULL
;
}
if
(((
floatobject
*
)
w
)
->
ob_fval
==
0
)
{
err_setstr
(
ZeroDivisionError
,
"float division
by zero
"
);
err_setstr
(
ZeroDivisionError
,
"float division"
);
return
NULL
;
}
return
newfloatobject
(
v
->
ob_fval
/
((
floatobject
*
)
w
)
->
ob_fval
);
...
...
@@ -192,7 +192,7 @@ float_rem(v, w)
}
wx
=
((
floatobject
*
)
w
)
->
ob_fval
;
if
(
wx
==
0
.
0
)
{
err_setstr
(
ZeroDivisionError
,
"float
division by zero
"
);
err_setstr
(
ZeroDivisionError
,
"float
remainder
"
);
return
NULL
;
}
return
newfloatobject
(
fmod
(
v
->
ob_fval
,
wx
));
...
...
@@ -212,7 +212,7 @@ float_divmod(v, w)
}
wx
=
((
floatobject
*
)
w
)
->
ob_fval
;
if
(
wx
==
0
.
0
)
{
err_setstr
(
ZeroDivisionError
,
"float div
ision by zero
"
);
err_setstr
(
ZeroDivisionError
,
"float div
mod()
"
);
return
NULL
;
}
vx
=
v
->
ob_fval
;
...
...
@@ -251,13 +251,13 @@ float_pow(v, w)
return
newfloatobject
(
1
.
0
);
/* x**0 is 1, even 0**0 */
if
(
iv
==
0
.
0
)
{
if
(
iw
<
0
.
0
)
{
err_setstr
(
Runtim
eError
,
"0.0 to the negative power"
);
err_setstr
(
Valu
eError
,
"0.0 to the negative power"
);
return
NULL
;
}
return
newfloatobject
(
0
.
0
);
}
if
(
iv
<
0
.
0
)
{
err_setstr
(
Runtim
eError
,
"negative float to float power"
);
err_setstr
(
Valu
eError
,
"negative float to float power"
);
return
NULL
;
}
errno
=
0
;
...
...
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