[Cython] List type, link on Wiki front-page

Greg Ewing greg.ewing at canterbury.ac.nz
Tue May 5 02:48:00 CEST 2009


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


More information about the Cython-dev mailing list