Hacker News new | ask | show | jobs
by mattip 3541 days ago
PyPy is a different implementation of a python interpreter, it includes a JIT to rewrite hot code into assembler. See www.pypy.org for more info. The JIT cannot be tacked on to CPython (what you call python3) since it is part of the interpreter.
1 comments

The jit is _generated_ from the interpreter; you can actually run pypy's interpreter directly from cpython, it's just slower.