diff options
author | Gregory P. Smith <greg@mad-scientist.com> | 2010-03-01 04:59:27 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@mad-scientist.com> | 2010-03-01 04:59:27 (GMT) |
commit | 1a530917e20eec360252232cdeaa2cfff1caffcb (patch) | |
tree | 592cfebfdd0e3f0b4cfa04036171080a4a55187b /Doc | |
parent | 7f807b79d83df2333a777360d1e2fd8ff469f1e7 (diff) | |
download | cpython-1a530917e20eec360252232cdeaa2cfff1caffcb.zip cpython-1a530917e20eec360252232cdeaa2cfff1caffcb.tar.gz cpython-1a530917e20eec360252232cdeaa2cfff1caffcb.tar.bz2 |
Merged revisions 78544 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r78544 | gregory.p.smith | 2010-02-28 20:56:12 -0800 (Sun, 28 Feb 2010) | 2 lines
Adds c_ssize_t to ctypes. issue 6729.
........
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/ctypes.rst | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Doc/library/ctypes.rst b/Doc/library/ctypes.rst index 652a2f4..32499d5 100644 --- a/Doc/library/ctypes.rst +++ b/Doc/library/ctypes.rst @@ -2207,6 +2207,13 @@ These are the fundamental ctypes data types: Represents the C :ctype:`size_t` datatype. +.. class:: c_ssize_t + + Represents the C :ctype:`ssize_t` datatype. + + .. versionadded:: 3.2 + + .. class:: c_ubyte Represents the C :ctype:`unsigned char` datatype, it interprets the value as |