From: Chris Angelico Date: Tue, 21 May 2019 13:34:19 +0000 (+1000) Subject: Annotate the unexplained assignment in exception unbinding (GH-11448) X-Git-Tag: v3.8.0b1~272 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ad098b6750f4d74387ac21c8e23ae1ee7ff13571;p=thirdparty%2FPython%2Fcpython.git Annotate the unexplained assignment in exception unbinding (GH-11448) --- diff --git a/Python/compile.c b/Python/compile.c index b20548c77724..63b2456bb3e8 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 */