[pypy-commit] cffi default: Mention ``[]``.

arigo noreply at buildbot.pypy.org
Sat Jul 14 01:11:45 CEST 2012


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r641:3b7a7e6834de
Date: 2012-07-14 00:34 +0200
http://bitbucket.org/cffi/cffi/changeset/3b7a7e6834de/

Log:	Mention ``[]``.

diff --git a/doc/source/index.rst b/doc/source/index.rst
--- a/doc/source/index.rst
+++ b/doc/source/index.rst
@@ -765,8 +765,8 @@
 |  ``float``,   | a float or anything on | a Python float   | float(), int() |
 |  ``double``   | which float() works    |                  |                |
 +---------------+------------------------+------------------+----------------+
-|  pointers     | another <cdata> with   | a <cdata>        | ``+``, ``-``   |
-|               | a compatible type (i.e.|                  |                |
+|  pointers     | another <cdata> with   | a <cdata>        | ``[]``, ``+``, |
+|               | a compatible type (i.e.|                  | ``-``          |
 |               | same type or ``char*`` |                  |                |
 |               | or ``void*``, or as an |                  |                |
 |               | array instead)         |                  |                |
@@ -775,33 +775,36 @@
 |               | any pointer or array   |                  |                |
 |               | type                   |                  |                |
 +---------------+------------------------+                  +----------------+
-|  ``char *``   | another <cdata> with   |                  | ``+``, ``-``,  |
-|               | any pointer or array   |                  | str()          |
-|               | type, or               |                  |                |
+|  ``char *``   | another <cdata> with   |                  | ``[]``,        |
+|               | any pointer or array   |                  | ``+``, ``-``,  |
+|               | type, or               |                  | str()          |
 |               | a Python string when   |                  |                |
 |               | passed as func argument|                  |                |
 +---------------+------------------------+                  +----------------+
-| ``wchar_t *`` | same as pointers       |                  | ``+``, ``-``,  |
-|               | (passing a unicode as  |                  | unicode()      |
-|               | func argument is not   |                  |                |
+| ``wchar_t *`` | same as pointers       |                  | ``[]``,        |
+|               | (passing a unicode as  |                  | ``+``, ``-``,  |
+|               | func argument is not   |                  | unicode()      |
 |               | implemented)           |                  |                |
 +---------------+------------------------+                  +----------------+
-|  pointers to  | same as pointers       |                  | ``+``, ``-``,  |
-|  structure or |                        |                  | and read/write |
-|  union        |                        |                  | struct fields  |
+|  pointers to  | same as pointers       |                  | ``[]``,        |
+|  structure or |                        |                  | ``+``, ``-``,  |
+|  union        |                        |                  | and read/write |
+|               |                        |                  | struct fields  |
 +---------------+                        |                  +----------------+
 | function      |                        |                  | call           |
 | pointers      |                        |                  |                |
 +---------------+------------------------+------------------+----------------+
 |  arrays       | a list or tuple of     | a <cdata>        | len(), iter(), |
-|               | items                  |                  | ``+``, ``-``   |
+|               | items                  |                  | ``[]``,        |
+|               |                        |                  | ``+``, ``-``   |
 +---------------+------------------------+                  +----------------+
 |  ``char[]``   | same as arrays, or a   |                  | len(), iter(), |
-|               | Python string          |                  | ``+``, ``-``,  |
-|               |                        |                  | str()          |
+|               | Python string          |                  | ``[]``, ``+``, |
+|               |                        |                  | ``-``, str()   |
 +---------------+------------------------+                  +----------------+
 | ``wchar_t[]`` | same as arrays, or a   |                  | len(), iter(), |
-|               | Python unicode         |                  | ``+``, ``-``,  |
+|               | Python unicode         |                  | ``[]``,        |
+|               |                        |                  | ``+``, ``-``,  |
 |               |                        |                  | unicode()      |
 +---------------+------------------------+------------------+----------------+
 | structure     | a list or tuple or     | a <cdata>        | read/write     |


More information about the pypy-commit mailing list