<p>These binaries include a Just-in-Time compiler. They only work on
x86 CPUs that have the <aclass="reference external"href="http://en.wikipedia.org/wiki/SSE2">SSE2</a> instruction set (most of
them do, nowadays), or on x86-64 CPUs.
them do, nowadays), or on x86-64 CPUs. They also contain <aclass="reference external"href="http://www.stackless.com/">stackless</a>
extensions, like <aclass="reference external"href="http://codespeak.net/svn/greenlet/trunk/doc/greenlet.txt">greenlets</a>.
(This is the official release 1.7;
for the most up-to-date version see below.)</p>
<ulclass="simple">
...
...
@@ -84,8 +85,6 @@
release is too old for what you want to do.</li>
<li>No JIT: A version without the JIT. Consumes a bit less memory
and may be faster on short-running scripts.</li>
<li>Stackless: Provides <aclass="reference external"href="http://www.stackless.com/">Stackless</a> extensions, as well as <aclass="reference external"href="http://codespeak.net/svn/greenlet/trunk/doc/greenlet.txt">greenlets</a>.
It is not possible right now to combine Stackless features with the JIT.</li>
<li>Sandboxing: A special safe version. Read the docs about <aclass="reference external"href="features.html#sandboxing">sandboxing</a>.
(It is also possible to <aclass="reference internal"href="#translate">translate</a> a version that includes both
sandboxing and the JIT compiler, although as the JIT is relatively
...
...
@@ -134,7 +133,6 @@
pypy translate.py -Ojit # get the JIT version
pypy translate.py -O2 # get the no-jit version
pypy translate.py -O2 --sandbox # get the sandbox version
pypy translate.py -O2 --stackless # get the stackless version
pypy translate.py -Ojit --backend=cli # only for branch/cli-jit