> (Pseudo code)
> 
> result = arg1 + arg2
> return result

For this code, the manually-written version will most likely
be faster than the Pyrex-generated one.

This is, most likely, because the manually-written version will
assume a specific data type for the arguments (e.g. int), which
Pyrex will not.

As a consequence, the manually-written version will be more
restricted than the Pyrex one, and most likely, that will be
acceptable in your application.

Theoretically speaking.

Regards,
Martin
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to