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
ff4b63b8
Kaydet (Commit)
ff4b63b8
authored
Agu 04, 2006
tarafından
Neal Norwitz
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Bug #1531405, format_exception no longer raises an exception if
str(exception) raised an exception.
üst
4b8bd31e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
51 additions
and
5 deletions
+51
-5
test_traceback.py
Lib/test/test_traceback.py
+13
-4
traceback.py
Lib/traceback.py
+6
-1
NEWS
Misc/NEWS
+32
-0
No files found.
Lib/test/test_traceback.py
Dosyayı görüntüle @
ff4b63b8
...
...
@@ -130,15 +130,24 @@ def test():
def
test_string_exception1
(
self
):
str_type
=
"String Exception"
err
=
traceback
.
format_exception_only
(
str_type
,
None
)
self
.
assert
_
(
len
(
err
)
==
1
)
self
.
assert
_
(
err
[
0
]
==
str_type
+
'
\n
'
)
self
.
assert
Equal
(
len
(
err
),
1
)
self
.
assert
Equal
(
err
[
0
],
str_type
+
'
\n
'
)
def
test_string_exception2
(
self
):
str_type
=
"String Exception"
str_value
=
"String Value"
err
=
traceback
.
format_exception_only
(
str_type
,
str_value
)
self
.
assert_
(
len
(
err
)
==
1
)
self
.
assert_
(
err
[
0
]
==
str_type
+
': '
+
str_value
+
'
\n
'
)
self
.
assertEqual
(
len
(
err
),
1
)
self
.
assertEqual
(
err
[
0
],
str_type
+
': '
+
str_value
+
'
\n
'
)
def
test_format_exception_only_bad__str__
(
self
):
class
X
(
Exception
):
def
__str__
(
self
):
1
/
0
err
=
traceback
.
format_exception_only
(
X
,
X
())
self
.
assertEqual
(
len
(
err
),
1
)
str_value
=
'<unprintable
%
s object>'
%
X
.
__name__
self
.
assertEqual
(
err
[
0
],
X
.
__name__
+
': '
+
str_value
+
'
\n
'
)
def
test_main
():
...
...
Lib/traceback.py
Dosyayı görüntüle @
ff4b63b8
...
...
@@ -202,7 +202,12 @@ def format_exception_only(etype, value):
def
_format_final_exc_line
(
etype
,
value
):
"""Return a list of a single line -- normal case for format_exception_only"""
if
value
is
None
or
not
str
(
value
):
try
:
printable
=
value
is
None
or
not
str
(
value
)
except
:
printable
=
False
if
printable
:
line
=
"
%
s
\n
"
%
etype
else
:
line
=
"
%
s:
%
s
\n
"
%
(
etype
,
_some_str
(
value
))
...
...
Misc/NEWS
Dosyayı görüntüle @
ff4b63b8
...
...
@@ -4,6 +4,38 @@ Python News
(
editors
:
check
NEWS
.
help
for
information
about
editing
NEWS
using
ReST
.)
What
's New in Python 2.5 release candidate 1?
=============================================
*Release date: XX-AUG-2006*
Core and builtins
-----------------
Library
-------
- Bug #1531405, format_exception no longer raises an exception if
str(exception) raised an exception.
Extension Modules
-----------------
Tests
-----
Build
-----
Mac
---
What'
s
New
in
Python
2.5
beta
3
?
================================
...
...
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