Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7f3140e

Browse files
committed
fix parens
1 parent 4bfce8f commit 7f3140e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Objects/unicodeobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1314,7 +1314,7 @@ unicode_resizable(PyObject *unicode)
13141314
return 0;
13151315
if (PyUnicode_CHECK_INTERNED(unicode))
13161316
return 0;
1317-
assert (unicode != unicode_empty);
1317+
assert(unicode != unicode_empty);
13181318
#ifdef Py_DEBUG
13191319
if (_PyUnicode_KIND(unicode) != PyUnicode_WCHAR_KIND
13201320
&& PyUnicode_GET_LENGTH(unicode) == 1)

0 commit comments

Comments
 (0)