Does the Python 3 interpreter have a JIT feature?

Posted by guz on Stack Overflow See other posts from Stack Overflow or by guz
Published on 2012-10-23T16:21:56Z Indexed on 2012/10/23 17:00 UTC
Read the original article Hit count: 229

Filed under:
|
|

I found that when I ask something more to Python, python doesn't use my machine resource at 100% and it's not really fast, it's fast if compared to many other interpreted languages, but when compared to compiled languages i think that the difference is really remarkable.

It's possible to speedup things with a JIT compiler in Python 3 ?

Usually a JIT compiler is the only thing that can improve performances in interpreted languages, so i'm referring to this one, if other solutions are available i would love to accept new answers.

© Stack Overflow or respective owner

Related posts about python

Related posts about python-3.x