Python too slow?

Ed Jensen ejensen at visi.com
Wed Jan 9 20:41:10 EST 2008


Bruno Desthuilliers <bdesth.quelquechose at free.quelquepart.fr> wrote:
> And the reference implementation of Python (CPython) is not 
> interpreted, it's compiled to byte-code, which is then executed by a VM 
> (just like Java).

Wow, this is pretty misleading.

Java is, indeed, compiled to bytecode; however, modern JVMs typically
compile the bytecode to native code and then execute the native code.

CPython strictly interprets bytecode; it does not compile the
bytecode to native code.



More information about the Python-list mailing list