Merge indentation fix from 3.3.

This commit is contained in:
Ezio Melotti 2013-04-19 07:10:45 +03:00
commit 03a0c27569
1 changed files with 6 additions and 6 deletions

View File

@ -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: */