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
19d76c5a
Kaydet (Commit)
19d76c5a
authored
Eyl 09, 2006
tarafından
Brett Cannon
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Remove __unicode__ method so that ``unicode(BaseException)`` succeeds.
Fixes bug #1551432.
üst
b3304c12
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
19 deletions
+13
-19
test_exceptions.py
Lib/test/test_exceptions.py
+9
-0
test_pep352.py
Lib/test/test_pep352.py
+1
-2
NEWS
Misc/NEWS
+3
-0
exceptions.c
Objects/exceptions.c
+0
-17
No files found.
Lib/test/test_exceptions.py
Dosyayı görüntüle @
19d76c5a
...
...
@@ -304,6 +304,15 @@ class ExceptionTests(unittest.TestCase):
return
-
1
self
.
assertRaises
(
RuntimeError
,
g
)
def
testUnicodeStrUsage
(
self
):
# Make sure both instances and classes have a str and unicode
# representation.
self
.
failUnless
(
str
(
Exception
))
self
.
failUnless
(
unicode
(
Exception
))
self
.
failUnless
(
str
(
Exception
(
'a'
)))
self
.
failUnless
(
unicode
(
Exception
(
u'a'
)))
def
test_main
():
run_unittest
(
ExceptionTests
)
...
...
Lib/test/test_pep352.py
Dosyayı görüntüle @
19d76c5a
...
...
@@ -15,8 +15,7 @@ class ExceptionClassTests(unittest.TestCase):
self
.
failUnless
(
issubclass
(
Exception
,
object
))
def
verify_instance_interface
(
self
,
ins
):
for
attr
in
(
"args"
,
"message"
,
"__str__"
,
"__unicode__"
,
"__repr__"
,
"__getitem__"
):
for
attr
in
(
"args"
,
"message"
,
"__str__"
,
"__repr__"
,
"__getitem__"
):
self
.
failUnless
(
hasattr
(
ins
,
attr
),
"
%
s missing
%
s attribute"
%
(
ins
.
__class__
.
__name__
,
attr
))
...
...
Misc/NEWS
Dosyayı görüntüle @
19d76c5a
...
...
@@ -19,6 +19,9 @@ What's New in Python 2.5 release candidate 2?
Core
and
builtins
-----------------
-
Bug
#
1551432
:
Exceptions
do
not
define
an
explicit
__unicode__
method
.
This
allows
calling
unicode
()
on
exceptions
classes
directly
to
succeed
.
-
Bug
#
1542051
:
Exceptions
now
correctly
call
PyObject_GC_UnTrack
.
Also
make
sure
that
every
exception
class
has
__module__
set
to
'exceptions'
.
...
...
Objects/exceptions.c
Dosyayı görüntüle @
19d76c5a
...
...
@@ -175,27 +175,10 @@ BaseException_setstate(PyObject *self, PyObject *state)
Py_RETURN_NONE
;
}
#ifdef Py_USING_UNICODE
/* while this method generates fairly uninspired output, it a least
* guarantees that we can display exceptions that have unicode attributes
*/
static
PyObject
*
BaseException_unicode
(
PyBaseExceptionObject
*
self
)
{
if
(
PyTuple_GET_SIZE
(
self
->
args
)
==
0
)
return
PyUnicode_FromUnicode
(
NULL
,
0
);
if
(
PyTuple_GET_SIZE
(
self
->
args
)
==
1
)
return
PyObject_Unicode
(
PyTuple_GET_ITEM
(
self
->
args
,
0
));
return
PyObject_Unicode
(
self
->
args
);
}
#endif
/* Py_USING_UNICODE */
static
PyMethodDef
BaseException_methods
[]
=
{
{
"__reduce__"
,
(
PyCFunction
)
BaseException_reduce
,
METH_NOARGS
},
{
"__setstate__"
,
(
PyCFunction
)
BaseException_setstate
,
METH_O
},
#ifdef Py_USING_UNICODE
{
"__unicode__"
,
(
PyCFunction
)
BaseException_unicode
,
METH_NOARGS
},
#endif
{
NULL
,
NULL
,
0
,
NULL
},
};
...
...
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