Commit 6996450c authored by Robert Bradshaw's avatar Robert Bradshaw

Test case for #725: invalid control flow analysis for multiple except clauses.

--HG--
extra : transplant_source : %A2%2B%60%5Ea%F2%EF%24%EE%12%DD%B0pw%13%7F%1C%7Bt%60
parent 41f7a2a8
def unused_except_capture():
"""
>>> unused_except_capture()
"""
try:
try:
raise ValueError
except TypeError, s:
raise TypeError
except ValueError, s:
raise ValueError # segfault
except ValueError:
pass
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment