commit | 8486f9b134e0a25a3c64405223e0ba96192e02d9 | [log] [tgz] |
---|---|---|
author | Gregory P. Smith <greg@krypto.org> | Tue Sep 30 00:33:24 2014 -0700 |
committer | Gregory P. Smith <greg@krypto.org> | Tue Sep 30 00:33:24 2014 -0700 |
tree | 33c8a0fa2fa7e2c37ab31d3a394e0f8d9a293c06 | |
parent | fd97a6fb2d501f0ecb104513b5c0c1707dd6f87e [diff] |
Fix "warning: comparison between signed and unsigned integer expressions" -Wsign-compare warnings in unicodeobject.c. These were all a result of sizeof() being unsigned and being compared to a Py_ssize_t. Not actual problems.