diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2013-04-19 07:10:09 +0300 |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2013-04-19 07:10:09 +0300 |
commit | 7b853b53f6121f42249cf8a2d2d82091b1f298db (patch) | |
tree | e6788d3f300559e3660d94b28f7246d9d5392637 /Python/compile.c | |
parent | d24772c9ef89612712469ecb0b41b96bc6406386 (diff) | |
download | cpython-7b853b53f6121f42249cf8a2d2d82091b1f298db.tar.gz |
Fix indentation.
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 0a8f58e692..dd4262c170 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: */ |