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
b67cc80b
Kaydet (Commit)
b67cc80b
authored
Mar 03, 2005
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
SF bug #1155938: Missing None check for __init__().
üst
6ce7ed23
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
0 deletions
+22
-0
test_descr.py
Lib/test/test_descr.py
+13
-0
NEWS
Misc/NEWS
+3
-0
typeobject.c
Objects/typeobject.c
+6
-0
No files found.
Lib/test/test_descr.py
Dosyayı görüntüle @
b67cc80b
...
...
@@ -3965,6 +3965,18 @@ def vicious_descriptor_nonsense():
import
gc
;
gc
.
collect
()
vereq
(
hasattr
(
c
,
'attr'
),
False
)
def
test_init
():
# SF 1155938
class
Foo
(
object
):
def
__init__
(
self
):
return
10
try
:
Foo
()
except
TypeError
:
pass
else
:
raise
TestFailed
,
"did not test __init__() for None return"
def
test_main
():
weakref_segfault
()
# Must be first, somehow
...
...
@@ -4058,6 +4070,7 @@ def test_main():
carloverre
()
filefault
()
vicious_descriptor_nonsense
()
test_init
()
if
verbose
:
print
"All OK"
...
...
Misc/NEWS
Dosyayı görüntüle @
b67cc80b
...
...
@@ -10,6 +10,9 @@ What's New in Python 2.5 alpha 1?
Core and builtins
-----------------
- Bug #1155938: new style classes did not check that __init__() was
returning None.
- Patch #802188: Report characters after line continuation character
('
\
') with a specific error message.
...
...
Objects/typeobject.c
Dosyayı görüntüle @
b67cc80b
...
...
@@ -4753,6 +4753,12 @@ slot_tp_init(PyObject *self, PyObject *args, PyObject *kwds)
Py_DECREF
(
meth
);
if
(
res
==
NULL
)
return
-
1
;
if
(
res
!=
Py_None
)
{
PyErr_SetString
(
PyExc_TypeError
,
"__init__() should return None"
);
Py_DECREF
(
res
);
return
-
1
;
}
Py_DECREF
(
res
);
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