On Sun, Aug 17, 2008 at 1:11 AM, Robert Bradshaw <[EMAIL PROTECTED]> wrote: > Constants will be optimized away. But if I write "i+1" where i is an > unsigned int, the result is still signed.
Are you talking about Cython or C here? In C, if i is an unsigned int, then i+1 is also an unsigned int. If that's not the case in Cython, I think it should be changed to match C. Carl _______________________________________________ Cython-dev mailing list [email protected] http://codespeak.net/mailman/listinfo/cython-dev
