What does PyPy have to offer over CPython, Jython, and IronPython?

后端 未结 4 385
南旧
南旧 2021-01-30 22:41

From what I have seen and read on blogs, PyPy is a very ambitious project. What are some advantages it will bring to the table over its siblings (CPython, Jython, and IronPython

4条回答
  •  滥情空心
    2021-01-30 22:49

    The most important feature is of course the JIT compiler. In CPython files are compiled to bytecode (.pyc) or optimized bytecode (.pyo) and then interpreted. With PyPy they will be compiled to native code. PyPy also includes Stackless Python patches, including it's impressive features (tasklet serialization, light threads etc.)

提交回复
热议问题