]> granicus.if.org Git - python/commitdiff
#19319: fix ctypes docs: sizeof is an operator in C, not a function.
authorEzio Melotti <ezio.melotti@gmail.com>
Mon, 21 Oct 2013 01:41:40 +0000 (04:41 +0300)
committerEzio Melotti <ezio.melotti@gmail.com>
Mon, 21 Oct 2013 01:41:40 +0000 (04:41 +0300)
Doc/library/ctypes.rst

index a6c918deb4ec52491ab7d39e42093ed4ed243863..a9dce61639eefd44365af28e939a8784d111cf76 100644 (file)
@@ -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.
+   Returns the size in bytes of a ctypes type or instance memory buffer.
+   Does the same as the C ``sizeof`` operator.
 
 
 .. function:: string_at(address, size=-1)