Commit ad098b67 authored by Chris Angelico's avatar Chris Angelico Committed by Eric V. Smith

Annotate the unexplained assignment in exception unbinding (GH-11448)

parent 4fb15021
...@@ -2931,7 +2931,7 @@ compiler_try_except(struct compiler *c, stmt_ty s) ...@@ -2931,7 +2931,7 @@ compiler_try_except(struct compiler *c, stmt_ty s)
try: try:
# body # body
finally: finally:
name = None name = None # in case body contains "del name"
del name del name
*/ */
......
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