[pypy-commit] cffi default: Document this as a new feature.

arigo noreply at buildbot.pypy.org
Thu Aug 23 18:32:17 CEST 2012


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r890:1a0359fa82f5
Date: 2012-08-23 18:32 +0200
http://bitbucket.org/cffi/cffi/changeset/1a0359fa82f5/

Log:	Document this as a new feature.

diff --git a/doc/source/index.rst b/doc/source/index.rst
--- a/doc/source/index.rst
+++ b/doc/source/index.rst
@@ -968,8 +968,6 @@
   fixed point types, vector types, etc. (must be declared with
   ``typedef struct { ...; } typename;`` and cannot be accessed directly)
 
-* Unnamed struct/union fields within struct/union
-
 * Thread-local variables (access them via getter/setter functions)
 
 * Variable-length structures, i.e. whose last field is a variable-length
@@ -977,6 +975,10 @@
   length 0, allocating a ``char[]`` of the correct size, and casting
   it to a struct pointer)
 
+.. versionadded:: 0.4
+   Now supported: the common GCC extension of anonymous nested
+   structs/unions inside structs/unions.
+
 
 Reference: conversions
 ----------------------


More information about the pypy-commit mailing list