[Python-Dev] genexps slow?

Raymond Hettinger python at rcn.com
Wed Mar 31 01:19:58 EST 2004


[Tim]
>  Make r a lot bigger, and I
> expect
> the genexp will get relatively faster (due to better cache behavior).

Also, try a timing with "sum(x for x in xrange(100000))".  This will
highlight the differences in behavior.  With xrange, this genexp will be
able to execute entirely in cache.


Raymond




More information about the Python-Dev mailing list