On 11/3/07, David Muffley <[EMAIL PROTECTED]> wrote:
> If I recall correctly, the syntax > if 1 <= i <= 9 > runs slower than the syntax > if i <= 9 and i >= 1 > Somewhere around 10% slower. If you use psyco, it goes about 40% slower! > Do you know why? Ian