<p>The same problem–not closing your files–can also show up if your
program opens a large number of files without closing them explicitly.
In that case, you can easily hit the system limit on the number of file
...
...
@@ -129,7 +129,7 @@
<p>Similarly, remember that you must <ttclass="docutils literal">close()</tt> a non-exhausted
generator in order to have its pending <ttclass="docutils literal">finally</tt> or <ttclass="docutils literal">with</tt>
clauses executed immediately:</p>
<divclass="syntax python"><pre><span></span><spanclass="k">def</span><spanclass="nf">mygen</span><spanclass="p">():</span><br/><spanclass="k">with</span><spanclass="n">foo</span><spanclass="p">:</span><br/><spanclass="k">yield</span><spanclass="mi">42</span><br/><br/><spanclass="k">for</span><spanclass="n">x</span><spanclass="ow">in</span><spanclass="n">mygen</span><spanclass="p">():</span><br/><spanclass="k">if</span><spanclass="n">x</span><spanclass="o">==</span><spanclass="mi">42</span><spanclass="p">:</span><br/><spanclass="k">break</span><spanclass="c1"># foo.__exit__ is not run immediately!</span><br/><br/><spanclass="c1"># fixed version:</span><br/><spanclass="n">gen</span><spanclass="o">=</span><spanclass="n">mygen</span><spanclass="p">()</span><br/><spanclass="k">try</span><spanclass="p">:</span><br/><spanclass="k">for</span><spanclass="n">x</span><spanclass="ow">in</span><spanclass="n">gen</span><spanclass="p">:</span><br/><spanclass="k">if</span><spanclass="n">x</span><spanclass="o">==</span><spanclass="mi">42</span><spanclass="p">:</span><br/><spanclass="k">break</span><br/><spanclass="k">finally</span><spanclass="p">:</span><br/><spanclass="n">gen</span><spanclass="o">.</span><spanclass="n">close</span><spanclass="p">()</span><br/></pre></div>
<divclass="syntax python"><pre><spanclass="k">def</span><spanclass="nf">mygen</span><spanclass="p">():</span><br/><spanclass="k">with</span><spanclass="n">foo</span><spanclass="p">:</span><br/><spanclass="k">yield</span><spanclass="mi">42</span><br/><br/><spanclass="k">for</span><spanclass="n">x</span><spanclass="ow">in</span><spanclass="n">mygen</span><spanclass="p">():</span><br/><spanclass="k">if</span><spanclass="n">x</span><spanclass="o">==</span><spanclass="mi">42</span><spanclass="p">:</span><br/><spanclass="k">break</span><spanclass="c"># foo.__exit__ is not run immediately!</span><br/><br/><spanclass="c"># fixed version:</span><br/><spanclass="n">gen</span><spanclass="o">=</span><spanclass="n">mygen</span><spanclass="p">()</span><br/><spanclass="k">try</span><spanclass="p">:</span><br/><spanclass="k">for</span><spanclass="n">x</span><spanclass="ow">in</span><spanclass="n">gen</span><spanclass="p">:</span><br/><spanclass="k">if</span><spanclass="n">x</span><spanclass="o">==</span><spanclass="mi">42</span><spanclass="p">:</span><br/><spanclass="k">break</span><br/><spanclass="k">finally</span><spanclass="p">:</span><br/><spanclass="n">gen</span><spanclass="o">.</span><spanclass="n">close</span><spanclass="p">()</span><br/></pre></div>
<p>More generally, <ttclass="docutils literal">__del__()</tt> methods are not executed as predictively
as on CPython: they run “some time later” in PyPy (or not at all if
the program finishes running in the meantime). See <aclass="reference external"href="http://pypy.readthedocs.org/en/latest/cpython_differences.html#differences-related-to-garbage-collection-strategies">more details
<pclass="system-message-title">System Message: WARNING/2 (<ttclass="docutils">[dynamic-text]</tt>, line 78)</p>
<p>Title underline too short.</p>
<preclass="literal-block">
Python2.7 compatible PyPy 5.10.0
-------------------------------
</pre>
</div>
<ulclass="simple">
...
...
@@ -118,8 +126,9 @@
<ulclass="simple">
<li><aclass="reference external"href="https://bitbucket.org/pypy/pypy/downloads/pypy2-v5.9.0-linux32.tar.bz2">Linux x86 binary (32bit, tar.bz2 built on Ubuntu 12.04 - 16.04)</a> (see <ttclass="docutils literal">[1]</tt> below)</li>
<li><aclass="reference external"href="https://bitbucket.org/pypy/pypy/downloads/pypy2-v5.9.0-linux64.tar.bz2">Linux x86-64 binary (64bit, tar.bz2 built on Ubuntu 12.04 - 16.04)</a> (see <ttclass="docutils literal">[1]</tt> below)</li>
<li><aclass="reference external"href="https://bitbucket.org/pypy/pypy/downloads/pypy2-v5.9.0-linux-armhf-raspbian.tar.bz2">ARM Hardfloat Linux binary (ARMHF/gnueabihf, tar.bz2, Raspbian)</a> (see <ttclass="docutils literal">[1]</tt> below)</li>
<li><aclass="reference external"href="https://bitbucket.org/pypy/pypy/downloads/pypy2-v5.9.0-linux-armhf-raring.tar.bz2">ARM Hardfloat Linux binary (ARMHF/gnueabihf, tar.bz2, Ubuntu Raring)</a> (see <ttclass="docutils literal">[1]</tt> below)</li>
<li><aclass="reference external"href="https://bitbucket.org/pypy/pypy/downloads/pypy2-v5.9.0-linux-armel.tar.bz2">ARM Softfloat Linux binary (ARMEL/gnueabi, tar.bz2, Ubuntu Precise)</a> (see <ttclass="docutils literal">[1]</tt> below)</li>
<li><aclass="reference external"href="https://bitbucket.org/pypy/pypy/downloads/pypy2-v5.9.0-osx64.tar.bz2">Mac OS X binary (64bit)</a></li>
<li><ahref="#id36"><spanclass="problematic"id="id37">`Linux x86 binary (32bit, tar.bz2 built on Ubuntu 12.04 - 16.04)`__</span></a> (see <ttclass="docutils literal">[1]</tt> below)</li>
<li><ahref="#id36"><spanclass="problematic"id="id38">`Linux x86-64 binary (64bit, tar.bz2 built on Ubuntu 12.04 - 16.04)`__</span></a> (see <ttclass="docutils literal">[1]</tt> below)</li>
<li><ahref="#id36"><spanclass="problematic"id="id39">`ARM Hardfloat Linux binary (ARMHF/gnueabihf, tar.bz2, Raspbian)`__</span></a> (see <ttclass="docutils literal">[1]</tt> below)</li>
<li><ahref="#id36"><spanclass="problematic"id="id40">`ARM Hardfloat Linux binary (ARMHF/gnueabihf, tar.bz2, Ubuntu Raring)`__</span></a> (see <ttclass="docutils literal">[1]</tt> below)</li>
<li><ahref="#id36"><spanclass="problematic"id="id41">`ARM Softfloat Linux binary (ARMEL/gnueabi, tar.bz2, Ubuntu Precise)`__</span></a> (see <ttclass="docutils literal">[1]</tt> below)</li>
<li><ahref="#id36"><spanclass="problematic"id="id42">`Mac OS X binary (64bit)`__</span></a> (High Sierra)</li>
<li><ahref="#id36"><spanclass="problematic"id="id43">`Mac OS X binary (64bit) (2)`__</span></a> (Sierra and below)</li>
<li>FreeBSD x86 and x86_64: see <aclass="reference external"href="http://www.freshports.org/lang/pypy">FreshPorts</a></li>
...
...
@@ -125,3 +134,3 @@
<li>FreeBSD x86 and x86_64: see <aclass="reference external"href="http://www.freshports.org/lang/pypy">FreshPorts</a></li>
<li><aclass="reference external"href="https://bitbucket.org/pypy/pypy/downloads/pypy2-v5.9.0-win32.zip">Windows binary (32bit)</a> (you might need the VS 2008 runtime library
<li><ahref="#id36"><spanclass="problematic"id="id44">`Windows binary (32bit)`__</span></a> (you might need the VS 2008 runtime library
<li><aclass="reference external"href="https://bitbucket.org/pypy/pypy/downloads/pypy2-v5.9.0-ppc64.tar.bz2">PowerPC PPC64 Linux binary (64bit big-endian, Fedora 20)</a> (see <ttclass="docutils literal">[1]</tt> below)</li>
<li><aclass="reference external"href="https://bitbucket.org/pypy/pypy/downloads/pypy2-v5.9.0-ppc64le.tar.bz2">PowerPC PPC64le Linux binary (64bit little-endian, Fedora 21)</a> (see <ttclass="docutils literal">[1]</tt> below)</li>
<li><aclass="reference external"href="https://bitbucket.org/pypy/pypy/downloads/pypy2-v5.9.0-s390x.tar.bz2">s390x Linux binary (tar.bz2 built on Redhat Linux 7.2)</a> (see <ttclass="docutils literal">[1]</tt> below)</li>
<li><aclass="reference external"href="https://bitbucket.org/pypy/pypy/downloads/pypy2-v5.9.0-src.tar.bz2">Source (tar.bz2)</a>; <aclass="reference external"href="https://bitbucket.org/pypy/pypy/downloads/pypy2-v5.9.0-src.zip">Source (zip)</a>. See below for more about the sources.</li>
<li><aclass="reference external"href="https://bitbucket.org/pypy/pypy/downloads">All our downloads,</a> including previous versions. We also have a
<li><ahref="#id36"><spanclass="problematic"id="id45">`PowerPC PPC64 Linux binary (64bit big-endian, Fedora 20)`__</span></a> (see <ttclass="docutils literal">[1]</tt> below)</li>
<li><ahref="#id36"><spanclass="problematic"id="id46">`PowerPC PPC64le Linux binary (64bit little-endian, Fedora 21)`__</span></a> (see <ttclass="docutils literal">[1]</tt> below)</li>
<li><ahref="#id36"><spanclass="problematic"id="id47">`s390x Linux binary (tar.bz2 built on Redhat Linux 7.2)`__</span></a> (see <ttclass="docutils literal">[1]</tt> below)</li>
<li><ahref="#id36"><spanclass="problematic"id="id48">`Source (tar.bz2)`__</span></a>; <ahref="#id36"><spanclass="problematic"id="id49">`Source (zip)`__</span></a>. See below for more about the sources.</li>
<li><ahref="#id36"><spanclass="problematic"id="id50">`All our downloads,`__</span></a> including previous versions. We also have a
<aclass="reference external"href="http://buildbot.pypy.org/mirror/">mirror</a>, but please use only if you have troubles accessing the links above</li>
</ul>
</div>
...
...
@@ -133,10 +142,16 @@
<aclass="reference external"href="http://buildbot.pypy.org/mirror/">mirror</a>, but please use only if you have troubles accessing the links above</li>
<li><aclass="reference external"href="https://bitbucket.org/pypy/pypy/downloads">All our downloads,</a> including previous versions. We also have a
<li><ahref="#id36"><spanclass="problematic"id="id51">`Linux x86-64 binary (64bit, tar.bz2 built on Ubuntu 12.04 - 16.04)`__</span></a> (see <ttclass="docutils literal">[1]</tt> below)</li>
<li><ahref="#id36"><spanclass="problematic"id="id54">`All our downloads,`__</span></a> including previous versions. We also have a
<aclass="reference external"href="http://buildbot.pypy.org/mirror/">mirror</a>, but please use only if you have troubles accessing the links above</li>
</ul>
<p>If your CPU is really, really old, it may be a x86-32 without SSE2.
...
...
@@ -162,7 +177,7 @@
<p>This is a special version of PyPy! See the <aclass="reference external"href="http://doc.pypy.org/en/latest/stm.html">Software Transactional
Memory</a> (STM) documentation.</p>
<ulclass="simple">
<li><aclass="reference external"href="https://bitbucket.org/pypy/pypy/downloads/pypy-stm-2.5.1-linux64.tar.bz2">PyPy-STM Linux x86-64 binary (64bit, tar.bz2 built on Ubuntu 12.04 - 16.04)</a></li>
<li><ahref="#id36"><spanclass="problematic"id="id55">`PyPy-STM Linux x86-64 binary (64bit, tar.bz2 built on Ubuntu 12.04 - 16.04)`__</span></a></li>
</ul>
</div>
<divclass="section"id="other-versions">
...
...
@@ -173,8 +188,8 @@
release is too old for what you want to do. There are versions for
different libc on this site too.</li>
<li>Reverse debugger: This version enables debugging your Python
programs by going forward and backward in time. See the <aclass="reference external"href="https://bitbucket.org/pypy/revdb/">RevDB
documentation</a>.</li>
programs by going forward and backward in time. See the <ahref="#id36"><spanclass="problematic"id="id56">`RevDB
documentation`__</span></a>.</li>
</ul>
<ulclass="simple">
<li>Sandboxing: A special safe version. Read the docs about <aclass="reference external"href="features.html#sandboxing">sandboxing</a>.
...
...
@@ -183,7 +198,7 @@
version, or otherwise play around on your own. We provide this
documentation only for historical reasons. Please do not use in
production. For reference, there are some very old, unmaintained
binaries for Linux (<aclass="reference external"href="https://bitbucket.org/pypy/pypy/downloads/pypy-1.8-sandbox-linux64.tar.bz2">32bit</a>, <aclass="reference external"href="https://bitbucket.org/pypy/pypy/downloads/pypy-1.8-sandbox-linux.tar.bz2">64bit</a>).</li>
binaries for Linux (<ahref="#id36"><spanclass="problematic"id="id57">32bit__</span></a>, <ahref="#id36"><spanclass="problematic"id="id58">64bit__</span></a>).</li>
</ul>
</div>
<divclass="section"id="installing">
...
...
@@ -192,7 +207,7 @@
uncompressed, they run in-place. For now you can uncompress them
either somewhere in your home directory or, say, in <ttclass="docutils literal">/opt</tt>, and
if you want, put a symlink from somewhere like
<ttclass="docutils literal">/usr/local/bin/pypy</tt> to <ttclass="docutils literal"><spanclass="pre">/path/to/pypy2-5.9.0/bin/pypy</span></tt>. Do
<ttclass="docutils literal">/usr/local/bin/pypy</tt> to <ttclass="docutils literal"><spanclass="pre">/path/to/pypy2-5.10.0/bin/pypy</span></tt>. Do
not move or copy the executable <ttclass="docutils literal">pypy</tt> outside the tree – put
a symlink to it, otherwise it will not find its libraries.</p>
</div>
...
...
@@ -224,7 +239,7 @@
</div>
<divclass="section"id="numpypy">
<h2>2. NumPyPy</h2>
<p>The “numpy” module can also be installed from <aclass="reference external"href="https://bitbucket.org/pypy/numpy">our own repository</a> rather
<p>The “numpy” module can also be installed from <ahref="#id36"><spanclass="problematic"id="id59">`our own repository`__</span></a> rather
than from the official source. This version uses our
built-in <ttclass="docutils literal">_numpypy</tt> multiarray replacement module, written in RPython.
This module is not complete, but if it works it should give correct answers.
...
...
@@ -248,7 +263,7 @@
</pre>
<p>Note again that this version is incomplete: many things do
not work and those that do may not be any faster than NumPy on CPython.
For further instructions see <aclass="reference external"href="https://bitbucket.org/pypy/numpy">the pypy/numpy repository</a> and the
For further instructions see <ahref="#id36"><spanclass="problematic"id="id60">`the pypy/numpy repository`__</span></a> and the
<aclass="reference external"href="http://doc.pypy.org/en/latest/faq.html#should-i-install-numpy-or-numpypy">FAQ question</a> about the difference between the two.</p>
</div>
</div>
...
...
@@ -266,6 +281,6 @@
<p>Alternatively, the following smaller package contains the source at
<li><pclass="first">Make sure you <strong>installed the dependencies.</strong> See the list <aclass="reference external"href="http://pypy.readthedocs.org/en/latest/build.html#install-build-time-dependencies">here</a>.</p>
<li><pclass="first">Make sure you <strong>installed the dependencies.</strong> See the list <ahref="#id36"><spanclass="problematic"id="id62">here__</span></a>.</p>
</li>
<li><pclass="first">Enter the <ttclass="docutils literal">goal</tt> directory:</p>
<preclass="literal-block">
...
...
@@ -381,21 +396,6 @@
<divclass="section"id="checksums">
<h1>Checksums</h1>
<p>Here are the checksums for each of the downloads</p>