mirror of https://github.com/python/cpython.git
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:
parent
c5011fe227
commit
a0b1ff5844
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue