Robert Bradshaw wrote: > Lists are actually rather fast. As a rule of thumb, yellow != slow, > it just means that you're using the Python/C API (which is still > often a good place to look for slowness).
What's likely to be more of a problem is converting between C and Python ints a lot, rather than the list appends themselves. -- Greg _______________________________________________ Cython-dev mailing list [email protected] http://codespeak.net/mailman/listinfo/cython-dev
