Re: [Tutor] Psyco Puzzle

2007-01-12 Thread Dick Moores
At 01:31 PM 1/12/2007, Dick Moores wrote: At 06:16 AM 1/12/2007, Adam Bark wrote: On 11/01/07, Danny Yoo < [EMAIL PROTECTED]> wrote: > Sometimes psyco speeds up a script by a factor of 10, and sometimes > it makes no difference at all. Here's a case where I fully expected > it to make a differ

Re: [Tutor] Psyco Puzzle

2007-01-12 Thread Dick Moores
At 01:31 PM 1/12/2007, Dick Moores wrote: >But another question. I tried testing just my function fact() (see < >http://www.rcblue.com/Python/Psyco_Puzzle.txt>) using timeit.py's >template, with and without psyco. Without psyco I used >= >def inner(_it, _timer): >

Re: [Tutor] Psyco Puzzle

2007-01-12 Thread Dick Moores
At 06:16 AM 1/12/2007, Adam Bark wrote: On 11/01/07, Danny Yoo < [EMAIL PROTECTED]> wrote: > Sometimes psyco speeds up a script by a factor of 10, and sometimes > it makes no difference at all. Here's a case where I fully expected > it to make a difference: > < http://www.rcblue.com/Python

Re: [Tutor] Psyco Puzzle

2007-01-12 Thread Adam Bark
On 11/01/07, Danny Yoo <[EMAIL PROTECTED]> wrote: > Sometimes psyco speeds up a script by a factor of 10, and sometimes > it makes no difference at all. Here's a case where I fully expected > it to make a difference: > . Whether using psyco > or n

Re: [Tutor] Psyco Puzzle

2007-01-11 Thread Danny Yoo
> Sometimes psyco speeds up a script by a factor of 10, and sometimes > it makes no difference at all. Here's a case where I fully expected > it to make a difference: > . Whether using psyco > or not, this takes about 13 seconds on my computer. Why n

[Tutor] Psyco Puzzle

2007-01-11 Thread Dick Moores
Sometimes psyco speeds up a script by a factor of 10, and sometimes it makes no difference at all. Here's a case where I fully expected it to make a difference: . Whether using psyco or not, this takes about 13 seconds on my computer. Why no differ