diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2013-04-19 07:10:45 +0300 |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2013-04-19 07:10:45 +0300 |
commit | 41e57208b5989add4702c4033548ab0169e0b9da (patch) | |
tree | a0495cec5d8b098e34132a5ce10ba39b9afd58ae /Python/compile.c | |
parent | cf9f2e82e6b36170c09bf6fdcdb613f417df8363 (diff) | |
parent | 7b853b53f6121f42249cf8a2d2d82091b1f298db (diff) | |
download | cpython-41e57208b5989add4702c4033548ab0169e0b9da.tar.gz |
Merge indentation fix from 3.3.
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 842ed50bec..52e8188d41 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: */ |