summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--docs/library/uctypes.rst11
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/library/uctypes.rst b/docs/library/uctypes.rst
index cd5db114c1..322946072d 100644
--- a/docs/library/uctypes.rst
+++ b/docs/library/uctypes.rst
@@ -115,6 +115,17 @@ Module contents
Native structure - with data endianness and alignment conforming to
the target ABI.
+.. function:: sizeof(struct)
+
+ Return size of data structure in bytes. Argument can be either structure
+ class or specific instantiated structure object (or its field).
+
+.. function:: addressof(obj)
+
+ Return address of an object. Argument should be bytes, bytearray or
+ other object supporting buffer protocol (and address of this buffer
+ is what actually returned).
+
(to be continued)
Structure objects