fix parens

This commit is contained in:
Benjamin Peterson 2011-10-03 19:37:29 -04:00
parent 4bfce8f81f
commit 7f3140ef80
1 changed files with 1 additions and 1 deletions

View File

@ -1314,7 +1314,7 @@ unicode_resizable(PyObject *unicode)
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)