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
5afa03a7
Kaydet (Commit)
5afa03a7
authored
Tem 15, 2011
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
catch nasty exception classes with __new__ that doesn't return a exception (closes #11627)
Patch from Andreas Stührk.
üst
1f0ccfa8
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
0 deletions
+19
-0
test_raise.py
Lib/test/test_raise.py
+9
-0
NEWS
Misc/NEWS
+3
-0
ceval.c
Python/ceval.c
+7
-0
No files found.
Lib/test/test_raise.py
Dosyayı görüntüle @
5afa03a7
...
...
@@ -121,6 +121,15 @@ class TestRaise(unittest.TestCase):
else
:
self
.
fail
(
"No exception raised"
)
def
test_new_returns_invalid_instance
(
self
):
# See issue #11627.
class
MyException
(
Exception
):
def
__new__
(
cls
,
*
args
):
return
object
()
with
self
.
assertRaises
(
TypeError
):
raise
MyException
class
TestCause
(
unittest
.
TestCase
):
def
test_invalid_cause
(
self
):
...
...
Misc/NEWS
Dosyayı görüntüle @
5afa03a7
...
...
@@ -10,6 +10,9 @@ What's New in Python 3.2.2?
Core and Builtins
-----------------
- Issue #11627: Fix segfault when __new__ on a exception returns a non-exception
class.
- Issue #12149: Update the method cache after a type's dictionnary gets
cleared by the garbage collector. This fixes a segfault when an instance
and its type get caught in a reference cycle, and the instance's
...
...
Python/ceval.c
Dosyayı görüntüle @
5afa03a7
...
...
@@ -3413,6 +3413,13 @@ do_raise(PyObject *exc, PyObject *cause)
value
=
PyObject_CallObject
(
exc
,
NULL
);
if
(
value
==
NULL
)
goto
raise_error
;
if
(
!
PyExceptionInstance_Check
(
value
))
{
PyErr_Format
(
PyExc_TypeError
,
"calling %R should have returned an instance of "
"BaseException, not %R"
,
type
,
Py_TYPE
(
value
));
goto
raise_error
;
}
}
else
if
(
PyExceptionInstance_Check
(
exc
))
{
value
=
exc
;
...
...
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