Add "tracing" to try-reraise2.py test. It now fails.
This commit is contained in:
parent
f8ff700de8
commit
010043caaf
@ -4,16 +4,25 @@ def f():
|
||||
raise ValueError("val", 3)
|
||||
except:
|
||||
try:
|
||||
print(1)
|
||||
raise TypeError
|
||||
except:
|
||||
print(2)
|
||||
try:
|
||||
print(3)
|
||||
try:
|
||||
print(4)
|
||||
raise AttributeError
|
||||
except:
|
||||
print(5)
|
||||
pass
|
||||
print(6)
|
||||
raise
|
||||
except TypeError:
|
||||
print(7)
|
||||
pass
|
||||
print(8)
|
||||
print(9)
|
||||
# This should raise original ValueError, not the most recently occurred AttributeError
|
||||
raise
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user