summaryrefslogtreecommitdiff
path: root/Python/compile.c
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2013-04-19 07:10:45 +0300
committerEzio Melotti <ezio.melotti@gmail.com>2013-04-19 07:10:45 +0300
commit41e57208b5989add4702c4033548ab0169e0b9da (patch)
treea0495cec5d8b098e34132a5ce10ba39b9afd58ae /Python/compile.c
parentcf9f2e82e6b36170c09bf6fdcdb613f417df8363 (diff)
parent7b853b53f6121f42249cf8a2d2d82091b1f298db (diff)
downloadcpython-41e57208b5989add4702c4033548ab0169e0b9da.tar.gz
Merge indentation fix from 3.3.
Diffstat (limited to 'Python/compile.c')
-rw-r--r--Python/compile.c12
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: */