值得关注的改进:
Reduced internal copying of bytearray operations
Tweak the internal structure of StringBuilder to speed up large string handling, which becomes advantageous on large programs at the cost of slightly slower small benchmark type programs.
Boost performance of thread-local variables in both unjitted and jitted code, this mostly affects errno handling on linux, which makes external calls faster.
Move to a mixed polling and mutex GIL model that make mutlithreaded jitted code run much faster
Optimize errno handling in linux (x86 and x86-64 only)
Remove ctypes pythonapi and ctypes.PyDLL, which never worked on PyPy
Fix performance regression on ufunc(
Classes in the ast module are now distinct from structures used by the compiler, which simplifies and speeds up translation of our source code to the PyPy binary interpreter
Upgrade stdlib from 2.7.5 to 2.7.8
Win32 now links statically to zlib, expat, bzip, and openssl-1.0.1i. No more missing DLLs
Many issues were resolved since the 2.3.1 release on June 8
更多内容请看发行说明。
PyPy 是用Python实现的Python解释器。
PyPy是,Python开发者为了更好的Hack Python创建的项目。此外,PyPy比CPython是更加灵活,易于使用和试验,以制定具体的功能在不同情况的实现方法,可以很容易实施。 该项目的目标是,让PyPy比C实现的Python更为容易的适应各个项目和方便裁剪。
软件详情:http://pypy.org/
下载地址:http://pypy.org/download.html
来自:开源中国社区

