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
386cd1e3
Kaydet (Commit)
386cd1e3
authored
Ock 15, 2008
tarafından
Christian Heimes
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
long(float('nan')) raises an OverflowError as discussed on the mailing list a week ago
üst
62fe8a8e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
2 deletions
+7
-2
test_long.py
Lib/test/test_long.py
+1
-1
NEWS
Misc/NEWS
+3
-0
longobject.c
Objects/longobject.c
+3
-1
No files found.
Lib/test/test_long.py
Dosyayı görüntüle @
386cd1e3
...
...
@@ -539,7 +539,7 @@ class LongTest(unittest.TestCase):
def
test_nan_inf
(
self
):
self
.
assertRaises
(
OverflowError
,
int
,
float
(
'inf'
))
self
.
assert
Equal
(
int
(
float
(
'nan'
)),
0
)
self
.
assert
Raises
(
OverflowError
,
int
,
float
(
'nan'
)
)
def
test_main
():
test_support
.
run_unittest
(
LongTest
)
...
...
Misc/NEWS
Dosyayı görüntüle @
386cd1e3
...
...
@@ -12,6 +12,9 @@ What's New in Python 3.0a3?
Core and Builtins
-----------------
- Object/longobject.c: long(float('nan')) raises an OverflowError instead
of returning 0.
- Issue #1762972: __file__ points to the source file instead of the pyc/pyo
file if the py file exists.
...
...
Objects/longobject.c
Dosyayı görüntüle @
386cd1e3
...
...
@@ -255,7 +255,9 @@ PyLong_FromDouble(double dval)
return
NULL
;
}
if
(
Py_IS_NAN
(
dval
))
{
return
PyLong_FromLong
(
0L
);
PyErr_SetString
(
PyExc_OverflowError
,
"cannot convert float NaN to int"
);
return
NULL
;
}
if
(
dval
<
0
.
0
)
{
neg
=
1
;
...
...
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