From 7f3140ef800872716bebaa2e605e0304b6f7ff1b Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Mon, 3 Oct 2011 19:37:29 -0400 Subject: [PATCH] fix parens --- Objects/unicodeobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 70529c6c92c8..a2541ef7d992 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -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) -- 2.47.3