diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-05-23 20:59:09 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-05-23 20:59:09 (GMT) |
commit | 91d517c54be8a46545ffe3d350ee6cd3b700e165 (patch) | |
tree | 3c22726a8c32b12ee5b84c60d747d0d29a670211 | |
parent | 40748f362ba72c896747f8528fbad3a69902c5d5 (diff) | |
download | cpython-91d517c54be8a46545ffe3d350ee6cd3b700e165.zip cpython-91d517c54be8a46545ffe3d350ee6cd3b700e165.tar.gz cpython-91d517c54be8a46545ffe3d350ee6cd3b700e165.tar.bz2 |
remove mention of old ctypes version
-rw-r--r-- | Doc/library/ctypes.rst | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Doc/library/ctypes.rst b/Doc/library/ctypes.rst index 9a1acd6..eca14d6 100644 --- a/Doc/library/ctypes.rst +++ b/Doc/library/ctypes.rst @@ -1210,8 +1210,7 @@ constructs a new Python object each time! Variable-sized data types ^^^^^^^^^^^^^^^^^^^^^^^^^ -``ctypes`` provides some support for variable-sized arrays and structures (this -was added in version 0.9.9.7). +``ctypes`` provides some support for variable-sized arrays and structures. The ``resize`` function can be used to resize the memory buffer of an existing ctypes object. The function takes the object as first argument, and the |