Author: Armin Rigo <[email protected]>
Branch: 
Changeset: r2828:dd328541d211
Date: 2016-12-08 11:22 +0100
http://bitbucket.org/cffi/cffi/changeset/dd328541d211/

Log:    Document issue #295

diff --git a/doc/source/whatsnew.rst b/doc/source/whatsnew.rst
--- a/doc/source/whatsnew.rst
+++ b/doc/source/whatsnew.rst
@@ -3,6 +3,19 @@
 ======================
 
 
+v1.9.2
+======
+
+* Issue #295: use calloc() directly instead of
+  PyObject_Malloc()+memset() to handle ffi.new() with a default
+  allocator.  Speeds up ``ffi.new(large-array)`` where most of the time
+  you never touch most of the array.  (But avoid doing that too often:
+  on 32-bit PyPy it will quickly exhaust the address space.  This case
+  is best handled by explicit calls to calloc() and free().)
+
+* some OS/X build fixes ("only with Xcode but without CLT").
+
+
 v1.9
 ====
 
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to