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
abcb0c03
Kaydet (Commit)
abcb0c03
authored
Ock 28, 2003
tarafından
Neal Norwitz
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix SF bug# 676155, RuntimeWarning with tp_compare
Check return value of PyLong_AsDouble(), it can return an error.
üst
54fb1925
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
3 deletions
+13
-3
test_builtin.py
Lib/test/test_builtin.py
+1
-0
test_long.py
Lib/test/test_long.py
+4
-2
NEWS
Misc/NEWS
+4
-0
floatobject.c
Objects/floatobject.c
+4
-1
No files found.
Lib/test/test_builtin.py
Dosyayı görüntüle @
abcb0c03
...
...
@@ -186,6 +186,7 @@ class BuiltinTest(unittest.TestCase):
def
__coerce__
(
self
,
other
):
raise
ValueError
self
.
assertRaises
(
ValueError
,
coerce
,
42
,
BadNumber
())
self
.
assertRaises
(
OverflowError
,
coerce
,
0.5
,
int
(
"12345"
*
1000
))
def
test_compile
(
self
):
compile
(
'print 1
\n
'
,
''
,
'exec'
)
...
...
Lib/test/test_long.py
Dosyayı görüntüle @
abcb0c03
...
...
@@ -371,9 +371,10 @@ def test_float_overflow():
for
x
in
-
2.0
,
-
1.0
,
0.0
,
1.0
,
2.0
:
verify
(
float
(
long
(
x
))
==
x
)
shuge
=
'12345'
*
1000
huge
=
1L
<<
30000
mhuge
=
-
huge
namespace
=
{
'huge'
:
huge
,
'mhuge'
:
mhuge
,
'math'
:
math
}
namespace
=
{
'huge'
:
huge
,
'mhuge'
:
mhuge
,
'
shuge'
:
shuge
,
'
math'
:
math
}
for
test
in
[
"float(huge)"
,
"float(mhuge)"
,
"complex(huge)"
,
"complex(mhuge)"
,
"complex(huge, 1)"
,
"complex(mhuge, 1)"
,
...
...
@@ -386,7 +387,8 @@ def test_float_overflow():
"1. ** huge"
,
"huge ** 1."
,
"1. ** mhuge"
,
"mhuge ** 1."
,
"math.sin(huge)"
,
"math.sin(mhuge)"
,
"math.sqrt(huge)"
,
"math.sqrt(mhuge)"
,
# should do better
"math.floor(huge)"
,
"math.floor(mhuge)"
]:
"math.floor(huge)"
,
"math.floor(mhuge)"
,
"float(shuge) == int(shuge)"
]:
try
:
eval
(
test
,
namespace
)
...
...
Misc/NEWS
Dosyayı görüntüle @
abcb0c03
...
...
@@ -23,6 +23,10 @@ Core and builtins
-
Fixed
crash
when
printing
a
subclass
of
str
and
__str__
returned
self
.
See
SF
bug
#
667147.
-
Fixed
an
invalid
RuntimeWarning
and
an
undetected
error
when
trying
to
convert
a
long
integer
into
a
float
which
couldn
't fit.
See SF bug #676155.
Extension modules
-----------------
...
...
Objects/floatobject.c
Dosyayı görüntüle @
abcb0c03
...
...
@@ -629,7 +629,10 @@ float_coerce(PyObject **pv, PyObject **pw)
return
0
;
}
else
if
(
PyLong_Check
(
*
pw
))
{
*
pw
=
PyFloat_FromDouble
(
PyLong_AsDouble
(
*
pw
));
double
x
=
PyLong_AsDouble
(
*
pw
);
if
(
x
==
-
1
.
0
&&
PyErr_Occurred
())
return
-
1
;
*
pw
=
PyFloat_FromDouble
(
x
);
Py_INCREF
(
*
pv
);
return
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