Revert a reversed comparison order introduced in r70695.

This commit is contained in:
Brett Cannon 2011-06-07 20:09:32 -07:00
parent ef3062f7af
commit 4a5e5de03f
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 ('u' == typecode)
if (typecode == 'u')
v = array_tounicode(a, NULL);
else
v = array_tolist(a, NULL);