(original) (raw)
changeset: 72634:64495ad8aa54 user: Benjamin Peterson benjamin@python.org date: Mon Oct 03 19:35:07 2011 -0400 files: Objects/unicodeobject.c description: fix formatting diff -r afb60b190f1c -r 64495ad8aa54 Objects/unicodeobject.c --- a/Objects/unicodeobject.c Mon Oct 03 19:34:12 2011 -0400 +++ b/Objects/unicodeobject.c Mon Oct 03 19:35:07 2011 -0400 @@ -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 /benjamin@python.org