|
|
|
|
|
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. |
|