cpython: d8e352e2f110 (original) (raw)
Mercurial > cpython
changeset 86534:d8e352e2f110 3.3
#19319: fix ctypes docs: sizeof is an operator in C, not a function. [#19319]
Ezio Melotti ezio.melotti@gmail.com | |
---|---|
date | Mon, 21 Oct 2013 04:41:40 +0300 |
parents | 10a261824b62 |
children | 49f8d07b6c5c 4c4f31a1b706 |
files | Doc/library/ctypes.rst |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-)[+] [-] Doc/library/ctypes.rst 4 |
line wrap: on
line diff
--- a/Doc/library/ctypes.rst +++ b/Doc/library/ctypes.rst @@ -1909,8 +1909,8 @@ Utility functions .. function:: sizeof(obj_or_type)
- Returns the size in bytes of a ctypes type or instance memory buffer. Does the
- same as the C
sizeof()
function.