docs/ustruct: There's no complete "struct" module, only "ustruct" subset.

"ustruct" is good example of micro-ified module, so rather should belong
to the corresponding list.
This commit is contained in:
Paul Sokolovsky
2016-04-22 22:35:31 +03:00
parent 5c8147528e
commit 3bc9b571bb
2 changed files with 5 additions and 6 deletions

View File

@@ -1,25 +0,0 @@
:mod:`struct` -- pack and unpack primitive data types
=====================================================
.. module:: struct
:synopsis: pack and unpack primitive data types
See `Python struct <https://docs.python.org/3/library/struct.html>`_ for more
information.
Functions
---------
.. function:: calcsize(fmt)
Return the number of bytes needed to store the given ``fmt``.
.. function:: pack(fmt, v1, v2, ...)
Pack the values ``v1``, ``v2``, ... according to the format string ``fmt``.
The return value is a bytes object encoding the values.
.. function:: unpack(fmt, data)
Unpack from the ``data`` according to the format string ``fmt``.
The return value is a tuple of the unpacked values.