]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
fix parens
authorBenjamin Peterson <benjamin@python.org>
Mon, 3 Oct 2011 23:37:29 +0000 (19:37 -0400)
committerBenjamin Peterson <benjamin@python.org>
Mon, 3 Oct 2011 23:37:29 +0000 (19:37 -0400)
Objects/unicodeobject.c

index 70529c6c92c80198def6cb2b489032408ceb255e..a2541ef7d99232504ac7e10b9840685d51732755 100644 (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)