blob: d0bcd318f52df320cff9fb4b9e1d10a2c3cf67c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
====================================
PyPy 1.4beta - towards 1.4.0 release
====================================
Hello.
As we head towards 1.4 release, which should be considered the very first PyPy
release ready to substitute CPython for at least some of us, we're pleased to
announce 1.4 beta release.
This release contains all major features from upcoming 1.4, the only thing
missing being improved memory footprint.
However, this is a beta release and might still contain some issues. One of
those issues is that, like on nightly builds, pypy might print some debugging
output at the end of your program run.
Highlights:
* x86_64 JIT backend
* since PyPy 1.3 we have an experimental support for CPython C extensions.
Those have to be recompiled using `pypy setup.py build`. Extensions usually
have to be tweaked for e.g. refcounting bugs that don't manifest on CPython.
There is a `list of patches`_ available for some extensions.
* rewritten fast and jitted regular expressions
* improvements all across the board (for example faster map calls)
* virtualenv support (virtualenv 1.5 or later)
Cheers,
The PyPy team
.. _`list of patches`: https://bitbucket.org/pypy/pypy/src/tip/pypy/module/cpyext/patches/
|