On Thu, 28 Feb 2013 22:03:09 +0100, Stefan Behnel wrote:
> The most widely used static Python compiler is Cython
Cython is not a Python compiler. Cython code will not run in a vanilla
Python implementation. It has different keywords and syntax, e.g.:
cdef inline int func(double num):
...
which gives SyntaxError in a Python compiler.
Cython is an excellent language and a great addition to the Python
ecosystem, but it is incorrect to call it "Python".
--
Steven
--
http://mail.python.org/mailman/listinfo/python-list