summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2013-04-19 04:10:45 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2013-04-19 04:10:45 (GMT)
commit03a0c275698c598f49d19708d62ddbc8e02d639e (patch)
tree9b80f22819257b9227b65bd71c234ac3423df4d8 /Python
parent77badf32c9a9644dbfa470077cfe53d8ec5d0fdd (diff)
parent1b6424fc4bda9df0c48dfd308b236ae3704a01b4 (diff)
downloadcpython-03a0c275698c598f49d19708d62ddbc8e02d639e.zip
cpython-03a0c275698c598f49d19708d62ddbc8e02d639e.tar.gz
cpython-03a0c275698c598f49d19708d62ddbc8e02d639e.tar.bz2
Merge indentation fix from 3.3.
Diffstat (limited to 'Python')
-rw-r--r--Python/compile.c12
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: */