From ad098b6750f4d74387ac21c8e23ae1ee7ff13571 Mon Sep 17 00:00:00 2001 From: Chris Angelico Date: Tue, 21 May 2019 23:34:19 +1000 Subject: [PATCH] Annotate the unexplained assignment in exception unbinding (GH-11448) --- Python/compile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/compile.c b/Python/compile.c index b20548c7772..63b2456bb3e 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -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 */