|
|
|
|
|
by zsouthboy
5794 days ago
|
|
It's hard to describe exactly what PyPy does, but it's more of a JIT / interpreter generator.
You write a language using RPython (which is more static than regular python), and PyPy makes a VM for it, or can turn it into C, or CIL, or...
Python on PyPy is the same way. It makes experimenting with new ideas and languages very easy, and (IMO) that is the primary reason for PyPy's existence; faster Python execution is a side benefit. |
|