From: Antoine Pitrou Date: Thu, 12 Jul 2012 18:31:50 +0000 (+0200) Subject: Add c_size_t and c_ssize_t to the ctypes summary table. X-Git-Tag: v3.3.0b2~225^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=52cc722ab8857c16173585532c24fbf1c40039ae;p=python Add c_size_t and c_ssize_t to the ctypes summary table. --- diff --git a/Doc/library/ctypes.rst b/Doc/library/ctypes.rst index df39c28cc9..3c602c8a25 100644 --- a/Doc/library/ctypes.rst +++ b/Doc/library/ctypes.rst @@ -243,6 +243,11 @@ Fundamental data types | :class:`c_ulonglong` | :c:type:`unsigned __int64` or | int | | | :c:type:`unsigned long long` | | +----------------------+------------------------------------------+----------------------------+ +| :class:`c_size_t` | :c:type:`size_t` | int | ++----------------------+------------------------------------------+----------------------------+ +| :class:`c_ssize_t` | :c:type:`ssize_t` or | int | +| | :c:type:`Py_ssize_t` | | ++----------------------+------------------------------------------+----------------------------+ | :class:`c_float` | :c:type:`float` | float | +----------------------+------------------------------------------+----------------------------+ | :class:`c_double` | :c:type:`double` | float |