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
ee1ae7cc
Kaydet (Commit)
ee1ae7cc
authored
Şub 08, 2009
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fix len() when __len__() returns a non number type #5137
üst
c7055a59
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
1 deletion
+16
-1
test_builtin.py
Lib/test/test_builtin.py
+12
-0
NEWS
Misc/NEWS
+3
-0
typeobject.c
Objects/typeobject.c
+1
-1
No files found.
Lib/test/test_builtin.py
Dosyayı görüntüle @
ee1ae7cc
...
...
@@ -611,6 +611,18 @@ class BuiltinTest(unittest.TestCase):
def
__len__
(
self
):
raise
ValueError
self
.
assertRaises
(
ValueError
,
len
,
BadSeq
())
class
InvalidLen
:
def
__len__
(
self
):
return
None
self
.
assertRaises
(
TypeError
,
len
,
InvalidLen
())
class
FloatLen
:
def
__len__
(
self
):
return
4.5
self
.
assertRaises
(
TypeError
,
len
,
FloatLen
())
class
HugeLen
:
def
__len__
(
self
):
return
sys
.
maxsize
+
1
self
.
assertRaises
(
OverflowError
,
len
,
HugeLen
())
def
test_map
(
self
):
self
.
assertEqual
(
...
...
Misc/NEWS
Dosyayı görüntüle @
ee1ae7cc
...
...
@@ -12,6 +12,9 @@ What's New in Python 3.1 alpha 0
Core and Builtins
-----------------
- Issue #5137: Make len() correctly raise a TypeError when a __len__ method
returns a non-number type.
- Issue #5182: Removed memoryview.__str__.
- Issue #1717: Removed builtin cmp() function, dropped tp_compare
...
...
Objects/typeobject.c
Dosyayı görüntüle @
ee1ae7cc
...
...
@@ -4618,7 +4618,7 @@ slot_sq_length(PyObject *self)
if
(
res
==
NULL
)
return
-
1
;
len
=
Py
Long_AsSsize_t
(
res
);
len
=
Py
Number_AsSsize_t
(
res
,
PyExc_OverflowError
);
Py_DECREF
(
res
);
if
(
len
<
0
)
{
if
(
!
PyErr_Occurred
())
...
...
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