[Python-checkins] cpython: fix parens

benjamin.peterson python-checkins at python.org
Tue Oct 4 01:37:36 CEST 2011


http://hg.python.org/cpython/rev/61de28fa5537
changeset:   72635:61de28fa5537
user:        Benjamin Peterson <benjamin at python.org>
date:        Mon Oct 03 19:37:29 2011 -0400
summary:
  fix parens

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


diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c
--- a/Objects/unicodeobject.c
+++ b/Objects/unicodeobject.c
@@ -1314,7 +1314,7 @@
         return 0;
     if (PyUnicode_CHECK_INTERNED(unicode))
         return 0;
-    assert (unicode != unicode_empty);
+    assert(unicode != unicode_empty);
 #ifdef Py_DEBUG
     if (_PyUnicode_KIND(unicode) != PyUnicode_WCHAR_KIND
         && PyUnicode_GET_LENGTH(unicode) == 1)

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


More information about the Python-checkins mailing list