From: Ezio Melotti Date: Fri, 19 Apr 2013 04:10:09 +0000 (+0300) Subject: Fix indentation. X-Git-Tag: v3.3.2~81 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1b6424fc4bda9df0c48dfd308b236ae3704a01b4;p=python Fix indentation. --- 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: */