summaryrefslogtreecommitdiffstats
path: root/Python/compile.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/compile.c')
-rw-r--r--Python/compile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/compile.c b/Python/compile.c
index b20548c..63b2456 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
*/