4 ms·
This might be a silly question as I don't know much about compilers or interpreters, but how is that possible? Also, why hasn't the Python community tried to ma
by paramsingh 11y ago
This might be a silly question as I don't know much about compilers or interpreters, but how is that possible? Also, why hasn't the Python community tried to make PyPy the default then?
- njbooher 11y agoVarious packages are incompatible with PyPy. http://pypy.org/compat.html http://pypy.org/compat.html
- tyho 11y agoPyPy is written in a subset of python called RPython. It is translated into c then executed.
- empyrical 11y ago> how is that possible PyPy is written in a restricted subset of Python called RPython, which gets translated into C https://rpython.readthedocs.org/en/latest/faq.html https://rpython.readthedocs.org/en/latest/faq.html