I have been reading about Python interpreters, especially CPython and PyPy, I know that there are 2 steps to run a Python code:
- Convert to Bytecode
- Interpre to MachineCode
My question is, if bytecode is generated by CPython, lets say Python version 2.7.0, will the bytecode run on PyPy for Python 2.7.0?