[pypy-commit] pypy default: merge

fijal noreply at buildbot.pypy.org
Thu Jun 7 17:33:37 CEST 2012


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: 
Changeset: r55471:acddcd17365c
Date: 2012-06-07 17:32 +0200
http://bitbucket.org/pypy/pypy/changeset/acddcd17365c/

Log:	merge

diff --git a/pypy/doc/release-1.9.0.rst b/pypy/doc/release-1.9.0.rst
--- a/pypy/doc/release-1.9.0.rst
+++ b/pypy/doc/release-1.9.0.rst
@@ -76,6 +76,13 @@
 * A lot of progress on various aspects of ``numpypy``. See `numpy-status`_
   page for the automatic report.
 
+* It is now possible to create and manipulate C-like structures using the
+  PyPy-only ``_ffi`` module.  The advantage over using e.g. ``ctypes`` is that
+  ``_ffi`` is very JIT-friendly, and getting/setting of fields is translated
+  to few assembler instructions by the JIT. However, this is mostly intended
+  as a low-level backend to be used by more user-friendly FFI packages, and
+  the API might change in the future. Use it at your own risk.
+
 * The non-x86 backends for the JIT are progressing but are still not
   merged (ARMv7 and PPC64).
 


More information about the pypy-commit mailing list