Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions Doc/library/struct.rst
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,13 @@ The module defines the following exception and functions:
position *offset*. Note that *offset* is a required argument.
A negative *offset* counts from the end of *buffer*.

.. note::

This function only specifies the packed bytes written to *buffer*; it
does not guarantee the number, width, or ordering of the underlying
memory accesses used to write them, including for buffers backed by
memory-mapped I/O.


.. function:: unpack(format, buffer)

Expand Down
Loading