projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4fb1502
)
Annotate the unexplained assignment in exception unbinding (GH-11448)
author
Chris Angelico
<rosuav@gmail.com>
Tue, 21 May 2019 13:34:19 +0000
(23:34 +1000)
committer
Eric V. Smith
<ericvsmith@users.noreply.github.com>
Tue, 21 May 2019 13:34:19 +0000
(09:34 -0400)
Python/compile.c
patch
|
blob
|
history
diff --git
a/Python/compile.c
b/Python/compile.c
index b20548c777246c16fc827556540f5ebff8d3f8ca..63b2456bb3e850035ba749d142ed27b4fa727e50 100644
(file)
--- 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
*/