[Python-checkins] cpython (3.3): Fix indentation.

ezio.melotti python-checkins at python.org
Fri Apr 19 06:11:24 CEST 2013


http://hg.python.org/cpython/rev/74eb5f978471
changeset:   83451:74eb5f978471
branch:      3.3
parent:      83449:ef100be2e8ba
user:        Ezio Melotti <ezio.melotti at gmail.com>
date:        Fri Apr 19 07:10:09 2013 +0300
summary:
  Fix indentation.

files:
  Python/compile.c |  12 ++++++------
  1 files changed, 6 insertions(+), 6 deletions(-)


diff --git a/Python/compile.c b/Python/compile.c
--- a/Python/compile.c
+++ b/Python/compile.c
@@ -2146,13 +2146,13 @@
 
             /*
               try:
-              # body
+                  # body
               except type as name:
-              try:
-              # body
-              finally:
-              name = None
-              del name
+                  try:
+                      # body
+                  finally:
+                      name = None
+                      del name
             */
 
             /* second try: */

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list