summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-07-12 18:32:11 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-07-12 18:32:11 (GMT)
commitc128167318347d209e3ec64ae2cce1079e1c583c (patch)
tree8c252303a2d4ea30cc3d755097f8047303c4b364 /Doc/library
parent77f7a9bcc9de8e417281eee9b362b15fe0ec4fa9 (diff)
parent52cc722ab8857c16173585532c24fbf1c40039ae (diff)
downloadcpython-c128167318347d209e3ec64ae2cce1079e1c583c.zip
cpython-c128167318347d209e3ec64ae2cce1079e1c583c.tar.gz
cpython-c128167318347d209e3ec64ae2cce1079e1c583c.tar.bz2
Add c_size_t and c_ssize_t to the ctypes summary table.
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/ctypes.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/library/ctypes.rst b/Doc/library/ctypes.rst
index 8a2b196..3e4afd1 100644
--- a/Doc/library/ctypes.rst
+++ b/Doc/library/ctypes.rst
@@ -248,6 +248,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 |