diff options
Diffstat (limited to 'Python/compile.c')
-rw-r--r-- | Python/compile.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Python/compile.c b/Python/compile.c index 842ed50..52e8188 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -2146,13 +2146,13 @@ compiler_try_except(struct compiler *c, stmt_ty s) /* try: - # body + # body except type as name: - try: - # body - finally: - name = None - del name + try: + # body + finally: + name = None + del name */ /* second try: */ |