Skip to content
Snippets Groups Projects
Commit b18b2d4b authored by Maciej Fijalkowski's avatar Maciej Fijalkowski
Browse files

a para about ctypes, add to progress bar

parent 068ecf60
No related branches found
No related tags found
No related merge requests found
......@@ -8,8 +8,8 @@
<script>
$(function() {
$("#progressbar").progressbar({
value: 68.9
value: 69.1
});
});
</script>
......@@ -12,8 +12,8 @@
});
});
</script>
$41329 of $60000 (68.0%)
$41480 of $60000 (69.1%)
<div id="progressbar">
</div>
......
......@@ -115,6 +115,10 @@
<tt class="docutils literal">reduce()</tt>, and to some extend <tt class="docutils literal">map()</tt> (although the simple case
is JITted), and to all usages of the <tt class="docutils literal">operator</tt> module we can think
of.</li>
<li><strong>Ctypes</strong>: Ctypes is a mixed bunch. If you're lucky you'll hit the
sweetspot and be <strong>really</strong> fast. If you're unlucky, you'll miss the
sweetspot and hit the slowpath which is much slower than CPython (2-10x
has been reported).</li>
</ul>
<p>We generally consider things that are slower on PyPy than CPython to be bugs
of PyPy. If you find some issue that is not documented here,
......
......@@ -81,6 +81,11 @@
is JITted), and to all usages of the ``operator`` module we can think
of.
* **Ctypes**: Ctypes is a mixed bunch. If you're lucky you'll hit the
sweetspot and be **really** fast. If you're unlucky, you'll miss the
sweetspot and hit the slowpath which is much slower than CPython (2-10x
has been reported).
We generally consider things that are slower on PyPy than CPython to be bugs
of PyPy. If you find some issue that is not documented here,
please report it to our `bug tracker`_ for investigation.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment