[pypy-commit] cffi default: Expand the problem

arigo noreply at buildbot.pypy.org
Fri May 22 01:44:53 CEST 2015


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r2083:e473748543e4
Date: 2015-05-22 01:45 +0200
http://bitbucket.org/cffi/cffi/changeset/e473748543e4/

Log:	Expand the problem

diff --git a/doc/source/overview.rst b/doc/source/overview.rst
--- a/doc/source/overview.rst
+++ b/doc/source/overview.rst
@@ -58,6 +58,9 @@
 
     # file "simple_example_build.py"
 
+    # Note: this particular example fails before version 1.0.2
+    # because it combines variadic function and ABI level.
+
     from cffi import FFI
 
     ffi = FFI()
diff --git a/doc/source/whatsnew.rst b/doc/source/whatsnew.rst
--- a/doc/source/whatsnew.rst
+++ b/doc/source/whatsnew.rst
@@ -6,8 +6,11 @@
 1.0.2
 =====
 
-* The out-of-line ABI mode failed when passed a C function declaration
-  with a final "..." argument.
+* Variadic C functions (ending in a "..." argument) were not supported
+  in the out-of-line ABI mode.  This was a bug---there was even a
+  (non-working) example__ doing exactly that!
+
+.. __: overview.html#out-of-line-abi-level
 
 
 1.0.1


More information about the pypy-commit mailing list