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
04edb528
Kaydet (Commit)
04edb528
authored
Mar 18, 2008
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
- Issue #2371: Add a Py3k warning when catching an exception that
doesn't derive from BaseException.
üst
0bb79508
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
31 additions
and
0 deletions
+31
-0
ACKS
Misc/ACKS
+1
-0
NEWS
Misc/NEWS
+3
-0
ceval.c
Python/ceval.c
+27
-0
No files found.
Misc/ACKS
Dosyayı görüntüle @
04edb528
...
...
@@ -360,6 +360,7 @@ Magnus Kessler
Lawrence Kesteloot
Vivek Khera
Mads Kiilerich
Taek Joo Kim
Steve Kirsch
Ron Klatchko
Bastian Kleineidam
...
...
Misc/NEWS
Dosyayı görüntüle @
04edb528
...
...
@@ -12,6 +12,9 @@ What's New in Python 2.6 alpha 2?
Core and builtins
-----------------
- Issue #2371: Add a Py3k warning when catching an exception that
doesn't derive from BaseException.
- Issue #2321: use pymalloc for unicode object string data to reduce
memory usage in some circumstances.
...
...
Python/ceval.c
Dosyayı görüntüle @
04edb528
...
...
@@ -4042,6 +4042,13 @@ assign_slice(PyObject *u, PyObject *v, PyObject *w, PyObject *x)
}
}
#define Py3kExceptionClass_Check(x) \
(PyType_Check((x)) && \
PyType_FastSubclass((PyTypeObject*)(x), Py_TPFLAGS_BASE_EXC_SUBCLASS))
#define CANNOT_CATCH_MSG "catching classes that don't inherit from " \
"BaseException is not allowed in 3.x."
static
PyObject
*
cmp_outcome
(
int
op
,
register
PyObject
*
v
,
register
PyObject
*
w
)
{
...
...
@@ -4079,6 +4086,16 @@ cmp_outcome(int op, register PyObject *v, register PyObject *w)
if
(
ret_val
==
-
1
)
return
NULL
;
}
if
(
Py_Py3kWarningFlag
&&
!
Py3kExceptionClass_Check
(
exc
))
{
int
ret_val
;
ret_val
=
PyErr_WarnEx
(
PyExc_DeprecationWarning
,
CANNOT_CATCH_MSG
,
1
);
if
(
ret_val
==
-
1
)
return
NULL
;
}
}
}
else
{
...
...
@@ -4091,6 +4108,16 @@ cmp_outcome(int op, register PyObject *v, register PyObject *w)
if
(
ret_val
==
-
1
)
return
NULL
;
}
if
(
Py_Py3kWarningFlag
&&
!
Py3kExceptionClass_Check
(
w
))
{
int
ret_val
;
ret_val
=
PyErr_WarnEx
(
PyExc_DeprecationWarning
,
CANNOT_CATCH_MSG
,
1
);
if
(
ret_val
==
-
1
)
return
NULL
;
}
}
res
=
PyErr_GivenExceptionMatches
(
v
,
w
);
break
;
...
...
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