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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
==========
PyPy 2.6.1
==========
We're pleased to announce PyPy 2.6.1, an update to PyPy 2.6.0 released June 1.
We have updated stdlib to 2.7.10, `cffi`_ to version 1.3, extended support for
the new vmprof_ statistical profiler for multiple threads, and increased
functionality of numpy.
You can download the PyPy 2.6.1 release here:
https://pypy.org/download.html
We would like to thank our donors for the continued support of the PyPy
project, and our volunteers and contributors.
.. _`cffi`: https://cffi.readthedocs.org
We would also like to encourage new people to join the project. PyPy has many
layers and we need help with all of them: `PyPy`_ and `RPython`_ documentation
improvements, tweaking popular `modules`_ to run on pypy, or general `help`_ with making
RPython's JIT even better.
.. _`PyPy`: https://doc.pypy.org
.. _`RPython`: https://rpython.readthedocs.org
.. _`modules`: https://doc.pypy.org/en/latest/project-ideas.html#make-more-python-modules-pypy-friendly
.. _`help`: https://doc.pypy.org/en/latest/project-ideas.html
What is PyPy?
=============
PyPy is a very compliant Python interpreter, almost a drop-in replacement for
CPython 2.7. It's fast (`pypy and cpython 2.7.x`_ performance comparison)
due to its integrated tracing JIT compiler.
This release supports **x86** machines on most common operating systems
(Linux 32/64, Mac OS X 64, Windows 32, OpenBSD_, freebsd_),
as well as newer **ARM** hardware (ARMv6 or ARMv7, with VFPv3) running Linux.
We also welcome developers of other
`dynamic languages`_ to see what RPython can do for them.
.. _`pypy and cpython 2.7.x`: https://speed.pypy.org
.. _OpenBSD: https://cvsweb.openbsd.org/cgi-bin/cvsweb/ports/lang/pypy
.. _freebsd: https://svnweb.freebsd.org/ports/head/lang/pypy/
.. _`dynamic languages`: https://pypyjs.org
Highlights
===========
* Bug Fixes
* Revive non-SSE2 support
* Fixes for detaching _io.Buffer*
* On Windows, close (and flush) all open sockets on exiting
* Drop support for ancient macOS v10.4 and before
* Clear up contention in the garbage collector between trace-me-later and pinning
* Issues reported with our previous release were resolved_ after reports from users on
our issue tracker at https://bitbucket.org/pypy/pypy/issues or on IRC at
#pypy.
* New features:
* cffi was updated to version 1.3
* The python stdlib was updated to 2.7.10 from 2.7.9
* vmprof now supports multiple threads and OS X
* The translation process builds cffi import libraries for some stdlib
packages, which should prevent confusion when package.py is not used
* better support for gdb debugging
* freebsd should be able to translate PyPy "out of the box" with no patches
* Numpy:
* Better support for record dtypes, including the ``align`` keyword
* Implement casting and create output arrays accordingly (still missing some corner cases)
* Support creation of unicode ndarrays
* Better support ndarray.flags
* Support ``axis`` argument in more functions
* Refactor array indexing to support ellipses
* Allow the docstrings of built-in numpy objects to be set at run-time
* Support the ``buffered`` nditer creation keyword
* Performance improvements:
* Delay recursive calls to make them non-recursive
* Skip loop unrolling if it compiles too much code
* Tweak the heapcache
* Add a list strategy for lists that store both floats and 32-bit integers.
The latter are encoded as nonstandard NaNs. Benchmarks show that the speed
of such lists is now very close to the speed of purely-int or purely-float
lists.
* Simplify implementation of ffi.gc() to avoid most weakrefs
* Massively improve the performance of map() with more than
one sequence argument
.. _`vmprof`: https://vmprof.readthedocs.org
.. _resolved: https://doc.pypy.org/en/latest/whatsnew-2.6.1.html
Please try it out and let us know what you think. We welcome
success stories, `experiments`_, or `benchmarks`_, we know you are using PyPy, please tell us about it!
Cheers
The PyPy Team
.. _`experiments`: https://morepypy.blogspot.com/2015/02/experiments-in-pyrlang-with-rpython.html
.. _`benchmarks`: https://mithrandi.net/blog/2015/03/axiom-benchmark-results-on-pypy-2-5-0
|