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

This commit is contained in:
Chris Angelico 2019-05-21 23:34:19 +10:00 committed by Eric V. Smith
parent 4fb1502189
commit ad098b6750
1 changed files with 1 additions and 1 deletions

View File

@ -2931,7 +2931,7 @@ compiler_try_except(struct compiler *c, stmt_ty s)
try:
# body
finally:
name = None
name = None # in case body contains "del name"
del name
*/