I didn't doubt that what you do works, but even "unsigned char" isn't the same as a unsigned 8-bit integer on every platform. Plus whoever will contribute in the future is bound to trip over the same issue again, omitting "unsigned" because its not necessary on i386. While "unsigned char" is clearly better than just "char", both obscure the issue that you actually want an integer with a small range. int8_t is both shorter and more expressive.
-- To post to this group, send an email to sage-devel@googlegroups.com To unsubscribe from this group, send an email to sage-devel+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/sage-devel URL: http://www.sagemath.org