Commit aaa69fd7 authored by Robert Bradshaw's avatar Robert Bradshaw

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

parent 266bb136
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