Ticket #725 (closed defect: fixed)
Invalid control flow analysis for multiple except clauses.
| Reported by: | robertwb | Owned by: | vitja |
|---|---|---|---|
| Priority: | major | Milestone: | 0.15.1 |
| Component: | Code Generation | Keywords: | |
| Cc: |
Description
Consider
def unused_except_capture():
"""
unused_except_capture()
"""
try:
raise ValueError
except TypeError, s:
raise TypeError
except ValueError, s:
raise TypeError
which tries to decref s (=NULL) in the second control block.
Change History
Note: See
TracTickets for help on using
tickets.
