[pypy-commit] pypy.org extradoc: Add some verbs to cPickle sentence.

edelsohn noreply at buildbot.pypy.org
Sun Feb 12 22:46:00 CET 2012


Author: edelsohn
Branch: extradoc
Changeset: r326:78c58258887b
Date: 2012-02-12 16:45 -0500
http://bitbucket.org/pypy/pypy.org/changeset/78c58258887b/

Log:	Add some verbs to cPickle sentence.

diff --git a/source/performance.txt b/source/performance.txt
--- a/source/performance.txt
+++ b/source/performance.txt
@@ -63,10 +63,11 @@
   that uses something like ``ctypes`` for the interface.
 
 * **Missing RPython modules**: A few modules of the standard library
-  (like ``csv`` and ``cPickle``) are in C in CPython, but in pure Python
-  in PyPy.  Sometimes the JIT is able to do a good job on them, and
-  sometimes not. In most cases (like ``csv`` and ``cPickle``), we're slower
-  than cPython, with the notable exception of ``json`` and ``heapq``.
+  (like ``csv`` and ``cPickle``) are written in C in CPython, but written
+  natively in pure Python in PyPy.  Sometimes the JIT is able to do a
+  good job on them, and sometimes not.  In most cases (like ``csv`` and
+  ``cPickle``), we're slower than cPython, with the notable exception of
+  ``json`` and ``heapq``.
 
 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,


More information about the pypy-commit mailing list