[Python-checkins] cpython: fix formatting

benjamin.peterson python-checkins at python.org
Tue Oct 4 01:35:12 CEST 2011


http://hg.python.org/cpython/rev/64495ad8aa54
changeset:   72634:64495ad8aa54
user:        Benjamin Peterson <benjamin at python.org>
date:        Mon Oct 03 19:35:07 2011 -0400
summary:
  fix formatting

files:
  Objects/unicodeobject.c |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c
--- a/Objects/unicodeobject.c
+++ b/Objects/unicodeobject.c
@@ -1362,8 +1362,8 @@
             return -1;
         _PyUnicode_CheckConsistency(*p_unicode);
         return 0;
-    } else
-        return resize_inplace((PyUnicodeObject*)unicode, length);
+    }
+    return resize_inplace((PyUnicodeObject*)unicode, length);
 }
 
 int

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


More information about the Python-checkins mailing list