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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
|
Frequently Asked Questions
==========================
.. contents::
What is PyPy?
-------------
PyPy is a reimplementation of Python in Python, using the RPython translation
toolchain.
PyPy tries to find new answers about ease of creation, flexibility,
maintainability and speed trade-offs for language implementations.
For further details see our :doc:`goal and architecture document <architecture>`.
Is PyPy a drop in replacement for CPython?
------------------------------------------
Almost!
The mostly likely stumbling block for any given project is support for
:ref:`extension modules <extension-modules>`. PyPy supports a continually growing
number of extension modules, but so far mostly only those found in the
standard library.
The language features (including builtin types and functions) are very
complete and well tested, so if your project does not use many
extension modules there is a good chance that it will work with PyPy.
We list the differences we know about in :doc:`cpython differences <cpython_differences>`.
Module xyz does not work with PyPy: ImportError
-----------------------------------------------
A module installed for CPython is not automatically available for PyPy
--- just like a module installed for CPython 2.6 is not automatically
available for CPython 2.7 if you installed both. In other words, you
need to install the module xyz specifically for PyPy.
On Linux, this means that you cannot use ``apt-get`` or some similar
package manager: these tools are only meant *for the version of CPython
provided by the same package manager.* So forget about them for now
and read on.
It is quite common nowadays that xyz is available on PyPI_ and
installable with ``pip install xyz``. The simplest solution is to `use
virtualenv (as documented here)`_. Then enter (activate) the virtualenv
and type: ``pip install xyz``.
If you get errors from the C compiler, the module is a CPython C
Extension module using unsupported features. `See below.`_
Alternatively, if either the module xyz is not available on PyPI or you
don't want to use virtualenv, then download the source code of xyz,
decompress the zip/tarball, and run the standard command: ``pypy
setup.py install``. (Note: `pypy` here instead of `python`.) As usual
you may need to run the command with `sudo` for a global installation.
The other commands of ``setup.py`` are available too, like ``build``.
.. _PyPI: https://pypi.python.org/pypi
.. _`use virtualenv (as documented here)`: getting-started.html#installing-using-virtualenv
.. _`See below.`:
Do CPython Extension modules work with PyPy?
--------------------------------------------
We have experimental support for CPython extension modules, so
they run with minor changes. This has been a part of PyPy since
the 1.4 release, but support is still in beta phase. CPython
extension modules in PyPy are often much slower than in CPython due to
the need to emulate refcounting. It is often faster to take out your
CPython extension and replace it with a pure python version that the
JIT can see. If trying to install module xyz, and the module has both
a C and a Python version of the same code, try first to disable the C
version; this is usually easily done by changing some line in ``setup.py``.
We fully support ctypes-based extensions. But for best performance, we
recommend that you use the cffi_ module to interface with C code.
For information on which third party extensions work (or do not work)
with PyPy see the `compatibility wiki`_.
.. _compatibility wiki: https://bitbucket.org/pypy/compatibility/wiki/Home
.. _cffi: http://cffi.readthedocs.org/
On which platforms does PyPy run?
---------------------------------
PyPy is regularly and extensively tested on Linux machines. It mostly
works on Mac and Windows: it is tested there, but most of us are running
Linux so fixes may depend on 3rd-party contributions. PyPy's JIT
works on x86 (32-bit or 64-bit) and on ARM (ARMv6 or ARMv7).
Support for POWER (64-bit) is stalled at the moment.
To bootstrap from sources, PyPy can use either CPython (2.6 or 2.7) or
another (e.g. older) PyPy. Cross-translation is not really supported:
e.g. to build a 32-bit PyPy, you need to have a 32-bit environment.
Cross-translation is only explicitly supported between a 32-bit Intel
Linux and ARM Linux (see :ref:`here <rpython:arm>`).
Which Python version (2.x?) does PyPy implement?
------------------------------------------------
PyPy currently aims to be fully compatible with Python 2.7. That means that
it contains the standard library of Python 2.7 and that it supports 2.7
features (such as set comprehensions).
.. _threading:
Does PyPy have a GIL? Why?
-------------------------------------------------
Yes, PyPy has a GIL. Removing the GIL is very hard. The problems are
essentially the same as with CPython (including the fact that our
garbage collectors are not thread-safe so far). Fixing it is possible,
as shown by Jython and IronPython, but difficult. It would require
adapting the whole source code of PyPy, including subtle decisions about
whether some effects are ok or not for the user (i.e. the Python
programmer).
Instead, since 2012, there is work going on on a still very experimental
:doc:`Software Transactional Memory <stm>` (STM) version of PyPy. This should give
an alternative PyPy which works without a GIL, while at the same time
continuing to give the Python programmer the complete illusion of having
one.
Is PyPy more clever than CPython about Tail Calls?
--------------------------------------------------
No. PyPy follows the Python language design, including the built-in
debugger features. This prevents tail calls, as summarized by Guido
van Rossum in two__ blog__ posts. Moreover, neither the JIT nor
Stackless__ change anything to that.
.. __: http://neopythonic.blogspot.com/2009/04/tail-recursion-elimination.html
.. __: http://neopythonic.blogspot.com/2009/04/final-words-on-tail-calls.html
.. __: stackless.html
How do I write extension modules for PyPy?
------------------------------------------
See :doc:`extending`.
.. _how-fast-is-pypy:
How fast is PyPy?
-----------------
This really depends on your code.
For pure Python algorithmic code, it is very fast. For more typical
Python programs we generally are 3 times the speed of CPython 2.7.
You might be interested in our `benchmarking site`_ and our
:ref:`jit documentation <rpython:jit>`.
`Your tests are not a benchmark`_: tests tend to be slow under PyPy
because they run exactly once; if they are good tests, they exercise
various corner cases in your code. This is a bad case for JIT
compilers. Note also that our JIT has a very high warm-up cost, meaning
that any program is slow at the beginning. If you want to compare the
timings with CPython, even relatively simple programs need to run *at
least* one second, preferrably at least a few seconds. Large,
complicated programs need even more time to warm-up the JIT.
.. _benchmarking site: http://speed.pypy.org
.. _your tests are not a benchmark: http://alexgaynor.net/2013/jul/15/your-tests-are-not-benchmark/
Couldn't the JIT dump and reload already-compiled machine code?
---------------------------------------------------------------
No, we found no way of doing that. The JIT generates machine code
containing a large number of constant addresses --- constant at the time
the machine code is generated. The vast majority is probably not at all
constants that you find in the executable, with a nice link name. E.g.
the addresses of Python classes are used all the time, but Python
classes don't come statically from the executable; they are created anew
every time you restart your program. This makes saving and reloading
machine code completely impossible without some very advanced way of
mapping addresses in the old (now-dead) process to addresses in the new
process, including checking that all the previous assumptions about the
(now-dead) object are still true about the new object.
.. _`prolog and javascript`:
Can I use PyPy's translation toolchain for other languages besides Python?
--------------------------------------------------------------------------
Yes. The toolsuite that translates the PyPy interpreter is quite
general and can be used to create optimized versions of interpreters
for any language, not just Python. Of course, these interpreters
can make use of the same features that PyPy brings to Python:
translation to various languages, stackless features,
garbage collection, implementation of various things like arbitrarily long
integers, etc.
Currently, we have `Topaz`_, a Ruby interpreter; `Hippy`_, a PHP
interpreter; preliminary versions of a `JavaScript interpreter`_
(Leonardo Santagada as his Summer of PyPy project); a `Prolog interpreter`_
(Carl Friedrich Bolz as his Bachelor thesis); and a `SmallTalk interpreter`_
(produced during a sprint). On the `PyPy bitbucket page`_ there is also a
Scheme and an Io implementation; both of these are unfinished at the moment.
.. _Topaz: http://topazruby.com/
.. _Hippy: http://morepypy.blogspot.ch/2012/07/hello-everyone.html
.. _JavaScript interpreter: https://bitbucket.org/pypy/lang-js/
.. _Prolog interpreter: https://bitbucket.org/cfbolz/pyrolog/
.. _SmallTalk interpreter: http://dx.doi.org/10.1007/978-3-540-89275-5_7
.. _PyPy bitbucket page: https://bitbucket.org/pypy/
How do I get into PyPy development? Can I come to sprints?
-----------------------------------------------------------
Certainly you can come to sprints! We always welcome newcomers and try
to help them as much as possible to get started with the project. We
provide tutorials and pair them with experienced PyPy
developers. Newcomers should have some Python experience and read some
of the PyPy documentation before coming to a sprint.
Coming to a sprint is usually the best way to get into PyPy development.
If you get stuck or need advice, :doc:`contact us <index>`. IRC is
the most immediate way to get feedback (at least during some parts of the day;
most PyPy developers are in Europe) and the `mailing list`_ is better for long
discussions.
.. _mailing list: http://mail.python.org/mailman/listinfo/pypy-dev
OSError: ... cannot restore segment prot after reloc... Help?
-------------------------------------------------------------
On Linux, if SELinux is enabled, you may get errors along the lines of
"OSError: externmod.so: cannot restore segment prot after reloc: Permission
denied." This is caused by a slight abuse of the C compiler during
configuration, and can be disabled by running the following command with root
privileges:
.. code-block:: console
# setenforce 0
This will disable SELinux's protection and allow PyPy to configure correctly.
Be sure to enable it again if you need it!
|