Author: edelsohn Branch: extradoc Changeset: r3946:a9917028d281 Date: 2011-10-27 11:17 -0400 http://bitbucket.org/pypy/extradoc/changeset/a9917028d281/
Log: I'm on a roll. diff --git a/blog/draft/faster-json.rst b/blog/draft/faster-json.rst --- a/blog/draft/faster-json.rst +++ b/blog/draft/faster-json.rst @@ -55,8 +55,8 @@ This is very clear if you look at json module as implemented in CPython's standard library. Not everything is in C (it would probably be just too much effort) and the interface to what is in C is guided via profiling not -via what kind of interface makes sense. It's clear from CPython 2.6 to 2.7. -Just adapting the code to interface with C made the Python version slower. +by what kind of interface makes sense. This especially is evident comparing CPython 2.6 to 2.7. +Just adapting the code to an interface with C made the Python version slower. Removing this clutter improves the readability a lot and improves PyPy's version a bit, although I don't have hard numbers. _______________________________________________ pypy-commit mailing list [email protected] http://mail.python.org/mailman/listinfo/pypy-commit
