Remove some extraneous parentheses and swap the comparison order to

prevent accidental assignment.

Silences a warning from LLVM/clang 2.9.
This commit is contained in:
Brett Cannon 2011-06-06 20:20:36 -07:00
parent c5011fe227
commit a0b1ff5844
1 changed files with 1 additions and 1 deletions

View File

@ -2091,7 +2091,7 @@ array_repr(arrayobject *a)
if (len == 0) {
return PyUnicode_FromFormat("array('%c')", (int)typecode);
}
if ((typecode == 'u'))
if ('u' == typecode)
v = array_tounicode(a, NULL);
else
v = array_tolist(a, NULL);