struct
 

Functions to convert between Python values and C structs.
Python strings are used to hold the data representing the C struct
and also as format strings to describe the layout of data in the C struct.

The optional first format char indicates byte ordering and alignment:
 @: native w/native alignment(default)
 =: native w/standard alignment
 <: little-endian, std. alignment
 >: big-endian, std. alignment
 !: network, std (same as >)

The remaining chars indicate types of args and must match exactly;
these can be preceded by a decimal repeat count:
 x: pad byte (no data); c:char; b:signed byte; B:unsigned byte;
 h:short; H:unsigned short; i:int; I:unsigned int;
 l:long; L:unsigned long; f:float; d:double.
Special cases (preceding decimal count indicates length):
 s:string (array of char); p: pascal string (w. count byte).
Special case (only available in native format):
 P:an integer type that is wide enough to hold a pointer.
Whitespace between formats is ignored.

The variable struct.error is an exception raised on errors.


 Classes
                                                                                                                                                                                                                               
exceptions.Exception
error


 class error(exceptions.Exception)
           no doc string
                                                                                                                                                                                                                     


 Functions
                                                                                                                                                                                                                               
calcsize(no arg info)
calcsize(fmt) -> int
Return size of C struct described by format string fmt.
See struct.__doc__ for more on format strings.
pack(no arg info)
pack(fmt, v1, v2, ...) -> string
Return string containing values v1, v2, ... packed according to fmt.
See struct.__doc__ for more on format strings.
unpack(no arg info)
unpack(fmt, string) -> (v1, v2, ...)
Unpack the string, containing packed C structure data, according
to fmt.  Requires len(string)==calcsize(fmt).
See struct.__doc__ for more on format strings.