No, and this is constantly evolving, though currently there isn't too much. See the bottom of
http://hg.cython.org/cython-devel/file/3152381ccf89/Cython/Compiler/ Builtin.py for what we have now. It should be noted that Cython tests for the most obvious types at runtime, e.g. on conversion to a c int/double it uses the macro form if one has a python int/float, and to index into lists/tuples it checks types dynamically to see if it can use the macros as well. - Robert On Sep 29, 2008, at 8:08 AM, Max Ivanov wrote: > Is there any list of builtin types which Cython supports in more > optimized way than just plain "object"? > _______________________________________________ > Cython-dev mailing list > [email protected] > http://codespeak.net/mailman/listinfo/cython-dev _______________________________________________ Cython-dev mailing list [email protected] http://codespeak.net/mailman/listinfo/cython-dev
