Benjamin Peterson | 4ae1946 | 2008-07-31 15:03:40 +0000 | [diff] [blame] | 1 | :mod:`struct` --- Interpret bytes as packed binary data |
Georg Brandl | 7f01a13 | 2009-09-16 15:58:14 +0000 | [diff] [blame] | 2 | ======================================================= |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 3 | |
| 4 | .. module:: struct |
Benjamin Peterson | 4ae1946 | 2008-07-31 15:03:40 +0000 | [diff] [blame] | 5 | :synopsis: Interpret bytes as packed binary data. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 6 | |
| 7 | .. index:: |
| 8 | pair: C; structures |
| 9 | triple: packing; binary; data |
| 10 | |
| 11 | This module performs conversions between Python values and C structs represented |
Benjamin Peterson | 4ae1946 | 2008-07-31 15:03:40 +0000 | [diff] [blame] | 12 | as Python :class:`bytes` objects. It uses :dfn:`format strings` (explained |
| 13 | below) as compact descriptions of the lay-out of the C structs and the |
| 14 | intended conversion to/from Python values. This can be used in handling |
| 15 | binary data stored in files or from network connections, among other sources. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 16 | |
| 17 | The module defines the following exception and functions: |
| 18 | |
| 19 | |
| 20 | .. exception:: error |
| 21 | |
| 22 | Exception raised on various occasions; argument is a string describing what is |
| 23 | wrong. |
| 24 | |
| 25 | |
| 26 | .. function:: pack(fmt, v1, v2, ...) |
| 27 | |
Benjamin Peterson | 4ae1946 | 2008-07-31 15:03:40 +0000 | [diff] [blame] | 28 | Return a bytes containing the values ``v1, v2, ...`` packed according to the |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 29 | given format. The arguments must match the values required by the format |
| 30 | exactly. |
| 31 | |
| 32 | |
| 33 | .. function:: pack_into(fmt, buffer, offset, v1, v2, ...) |
| 34 | |
| 35 | Pack the values ``v1, v2, ...`` according to the given format, write the packed |
| 36 | bytes into the writable *buffer* starting at *offset*. Note that the offset is |
| 37 | a required argument. |
| 38 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 39 | |
Benjamin Peterson | 4ae1946 | 2008-07-31 15:03:40 +0000 | [diff] [blame] | 40 | .. function:: unpack(fmt, bytes) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 41 | |
Benjamin Peterson | 4ae1946 | 2008-07-31 15:03:40 +0000 | [diff] [blame] | 42 | Unpack the bytes (presumably packed by ``pack(fmt, ...)``) according to the |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 43 | given format. The result is a tuple even if it contains exactly one item. The |
Benjamin Peterson | 4ae1946 | 2008-07-31 15:03:40 +0000 | [diff] [blame] | 44 | bytes must contain exactly the amount of data required by the format |
| 45 | (``len(bytes)`` must equal ``calcsize(fmt)``). |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 46 | |
| 47 | |
Georg Brandl | 7f01a13 | 2009-09-16 15:58:14 +0000 | [diff] [blame] | 48 | .. function:: unpack_from(fmt, buffer, offset=0) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 49 | |
Benjamin Peterson | e0124bd | 2009-03-09 21:04:33 +0000 | [diff] [blame] | 50 | Unpack the *buffer* according to the given format. The result is a tuple even |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 51 | if it contains exactly one item. The *buffer* must contain at least the amount |
| 52 | of data required by the format (``len(buffer[offset:])`` must be at least |
| 53 | ``calcsize(fmt)``). |
| 54 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 55 | |
| 56 | .. function:: calcsize(fmt) |
| 57 | |
Benjamin Peterson | 4ae1946 | 2008-07-31 15:03:40 +0000 | [diff] [blame] | 58 | Return the size of the struct (and hence of the bytes) corresponding to the |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 59 | given format. |
| 60 | |
| 61 | Format characters have the following meaning; the conversion between C and |
| 62 | Python values should be obvious given their types: |
| 63 | |
| 64 | +--------+-------------------------+--------------------+-------+ |
| 65 | | Format | C Type | Python | Notes | |
| 66 | +========+=========================+====================+=======+ |
| 67 | | ``x`` | pad byte | no value | | |
| 68 | +--------+-------------------------+--------------------+-------+ |
Benjamin Peterson | 4ae1946 | 2008-07-31 15:03:40 +0000 | [diff] [blame] | 69 | | ``c`` | :ctype:`char` | bytes of length 1 | | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 70 | +--------+-------------------------+--------------------+-------+ |
Benjamin Peterson | 4ae1946 | 2008-07-31 15:03:40 +0000 | [diff] [blame] | 71 | | ``b`` | :ctype:`signed char` | integer | \(1) | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 72 | +--------+-------------------------+--------------------+-------+ |
| 73 | | ``B`` | :ctype:`unsigned char` | integer | | |
| 74 | +--------+-------------------------+--------------------+-------+ |
Benjamin Peterson | 4ae1946 | 2008-07-31 15:03:40 +0000 | [diff] [blame] | 75 | | ``?`` | :ctype:`_Bool` | bool | \(2) | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 76 | +--------+-------------------------+--------------------+-------+ |
| 77 | | ``h`` | :ctype:`short` | integer | | |
| 78 | +--------+-------------------------+--------------------+-------+ |
| 79 | | ``H`` | :ctype:`unsigned short` | integer | | |
| 80 | +--------+-------------------------+--------------------+-------+ |
| 81 | | ``i`` | :ctype:`int` | integer | | |
| 82 | +--------+-------------------------+--------------------+-------+ |
Georg Brandl | ba956ae | 2007-11-29 17:24:34 +0000 | [diff] [blame] | 83 | | ``I`` | :ctype:`unsigned int` | integer | | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 84 | +--------+-------------------------+--------------------+-------+ |
| 85 | | ``l`` | :ctype:`long` | integer | | |
| 86 | +--------+-------------------------+--------------------+-------+ |
Georg Brandl | ba956ae | 2007-11-29 17:24:34 +0000 | [diff] [blame] | 87 | | ``L`` | :ctype:`unsigned long` | integer | | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 88 | +--------+-------------------------+--------------------+-------+ |
Benjamin Peterson | 4ae1946 | 2008-07-31 15:03:40 +0000 | [diff] [blame] | 89 | | ``q`` | :ctype:`long long` | integer | \(3) | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 90 | +--------+-------------------------+--------------------+-------+ |
Benjamin Peterson | 4ae1946 | 2008-07-31 15:03:40 +0000 | [diff] [blame] | 91 | | ``Q`` | :ctype:`unsigned long | integer | \(3) | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 92 | | | long` | | | |
| 93 | +--------+-------------------------+--------------------+-------+ |
| 94 | | ``f`` | :ctype:`float` | float | | |
| 95 | +--------+-------------------------+--------------------+-------+ |
| 96 | | ``d`` | :ctype:`double` | float | | |
| 97 | +--------+-------------------------+--------------------+-------+ |
Benjamin Peterson | 4ae1946 | 2008-07-31 15:03:40 +0000 | [diff] [blame] | 98 | | ``s`` | :ctype:`char[]` | bytes | \(1) | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 99 | +--------+-------------------------+--------------------+-------+ |
Benjamin Peterson | 4ae1946 | 2008-07-31 15:03:40 +0000 | [diff] [blame] | 100 | | ``p`` | :ctype:`char[]` | bytes | \(1) | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 101 | +--------+-------------------------+--------------------+-------+ |
| 102 | | ``P`` | :ctype:`void \*` | integer | | |
| 103 | +--------+-------------------------+--------------------+-------+ |
| 104 | |
| 105 | Notes: |
| 106 | |
| 107 | (1) |
Benjamin Peterson | 4ae1946 | 2008-07-31 15:03:40 +0000 | [diff] [blame] | 108 | The ``c``, ``s`` and ``p`` conversion codes operate on :class:`bytes` |
| 109 | objects, but packing with such codes also supports :class:`str` objects, |
| 110 | which are encoded using UTF-8. |
| 111 | |
| 112 | (2) |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 113 | The ``'?'`` conversion code corresponds to the :ctype:`_Bool` type defined by |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 114 | C99. If this type is not available, it is simulated using a :ctype:`char`. In |
| 115 | standard mode, it is always represented by one byte. |
| 116 | |
Benjamin Peterson | 4ae1946 | 2008-07-31 15:03:40 +0000 | [diff] [blame] | 117 | (3) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 118 | The ``'q'`` and ``'Q'`` conversion codes are available in native mode only if |
| 119 | the platform C compiler supports C :ctype:`long long`, or, on Windows, |
| 120 | :ctype:`__int64`. They are always available in standard modes. |
| 121 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 122 | A format character may be preceded by an integral repeat count. For example, |
| 123 | the format string ``'4h'`` means exactly the same as ``'hhhh'``. |
| 124 | |
| 125 | Whitespace characters between formats are ignored; a count and its format must |
| 126 | not contain whitespace though. |
| 127 | |
Benjamin Peterson | 4ae1946 | 2008-07-31 15:03:40 +0000 | [diff] [blame] | 128 | For the ``'s'`` format character, the count is interpreted as the length of the |
| 129 | bytes, not a repeat count like for the other format characters; for example, |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 130 | ``'10s'`` means a single 10-byte string, while ``'10c'`` means 10 characters. |
| 131 | For packing, the string is truncated or padded with null bytes as appropriate to |
Benjamin Peterson | 4ae1946 | 2008-07-31 15:03:40 +0000 | [diff] [blame] | 132 | make it fit. For unpacking, the resulting bytes object always has exactly the |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 133 | specified number of bytes. As a special case, ``'0s'`` means a single, empty |
| 134 | string (while ``'0c'`` means 0 characters). |
| 135 | |
Mark Dickinson | b40b947 | 2009-03-29 16:58:21 +0000 | [diff] [blame] | 136 | When packing a value ``x`` using one of the integer formats (``'b'``, |
| 137 | ``'B'``, ``'h'``, ``'H'``, ``'i'``, ``'I'``, ``'l'``, ``'L'``, |
| 138 | ``'q'``, ``'Q'``), if ``x`` is outside the valid range for that format |
| 139 | then :exc:`struct.error` is raised. |
| 140 | |
| 141 | .. versionchanged:: 3.1 |
| 142 | In 3.0, some of the integer formats wrapped out-of-range values and |
| 143 | raised :exc:`DeprecationWarning` instead of :exc:`struct.error`. |
| 144 | |
| 145 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 146 | The ``'p'`` format character encodes a "Pascal string", meaning a short |
| 147 | variable-length string stored in a fixed number of bytes. The count is the total |
| 148 | number of bytes stored. The first byte stored is the length of the string, or |
| 149 | 255, whichever is smaller. The bytes of the string follow. If the string |
| 150 | passed in to :func:`pack` is too long (longer than the count minus 1), only the |
| 151 | leading count-1 bytes of the string are stored. If the string is shorter than |
| 152 | count-1, it is padded with null bytes so that exactly count bytes in all are |
| 153 | used. Note that for :func:`unpack`, the ``'p'`` format character consumes count |
Benjamin Peterson | 4ae1946 | 2008-07-31 15:03:40 +0000 | [diff] [blame] | 154 | bytes, but that the string returned can never contain more than 255 bytes. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 155 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 156 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 157 | |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 158 | For the ``'?'`` format character, the return value is either :const:`True` or |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 159 | :const:`False`. When packing, the truth value of the argument object is used. |
| 160 | Either 0 or 1 in the native or standard bool representation will be packed, and |
| 161 | any non-zero value will be True when unpacking. |
| 162 | |
| 163 | By default, C numbers are represented in the machine's native format and byte |
| 164 | order, and properly aligned by skipping pad bytes if necessary (according to the |
| 165 | rules used by the C compiler). |
| 166 | |
| 167 | Alternatively, the first character of the format string can be used to indicate |
| 168 | the byte order, size and alignment of the packed data, according to the |
| 169 | following table: |
| 170 | |
| 171 | +-----------+------------------------+--------------------+ |
| 172 | | Character | Byte order | Size and alignment | |
| 173 | +===========+========================+====================+ |
| 174 | | ``@`` | native | native | |
| 175 | +-----------+------------------------+--------------------+ |
| 176 | | ``=`` | native | standard | |
| 177 | +-----------+------------------------+--------------------+ |
| 178 | | ``<`` | little-endian | standard | |
| 179 | +-----------+------------------------+--------------------+ |
| 180 | | ``>`` | big-endian | standard | |
| 181 | +-----------+------------------------+--------------------+ |
| 182 | | ``!`` | network (= big-endian) | standard | |
| 183 | +-----------+------------------------+--------------------+ |
| 184 | |
| 185 | If the first character is not one of these, ``'@'`` is assumed. |
| 186 | |
Andrew M. Kuchling | fbd9d2f | 2010-02-22 15:15:21 +0000 | [diff] [blame^] | 187 | Native byte order is big-endian or little-endian, depending on the host |
| 188 | system. For example, Intel x86 and AMD64 (x86-64) are little-endian; |
| 189 | Motorola 68000 and PowerPC G5 are big-endian; ARM and Intel Itanium feature |
| 190 | switchable endianness (bi-endian). Use ``sys.byteorder`` to check the |
| 191 | endianness of your system. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 192 | |
| 193 | Native size and alignment are determined using the C compiler's |
Christian Heimes | 5b5e81c | 2007-12-31 16:14:33 +0000 | [diff] [blame] | 194 | ``sizeof`` expression. This is always combined with native byte order. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 195 | |
| 196 | Standard size and alignment are as follows: no alignment is required for any |
| 197 | type (so you have to use pad bytes); :ctype:`short` is 2 bytes; :ctype:`int` and |
| 198 | :ctype:`long` are 4 bytes; :ctype:`long long` (:ctype:`__int64` on Windows) is 8 |
| 199 | bytes; :ctype:`float` and :ctype:`double` are 32-bit and 64-bit IEEE floating |
| 200 | point numbers, respectively. :ctype:`_Bool` is 1 byte. |
| 201 | |
| 202 | Note the difference between ``'@'`` and ``'='``: both use native byte order, but |
| 203 | the size and alignment of the latter is standardized. |
| 204 | |
| 205 | The form ``'!'`` is available for those poor souls who claim they can't remember |
| 206 | whether network byte order is big-endian or little-endian. |
| 207 | |
| 208 | There is no way to indicate non-native byte order (force byte-swapping); use the |
| 209 | appropriate choice of ``'<'`` or ``'>'``. |
| 210 | |
| 211 | The ``'P'`` format character is only available for the native byte ordering |
| 212 | (selected as the default or with the ``'@'`` byte order character). The byte |
| 213 | order character ``'='`` chooses to use little- or big-endian ordering based on |
| 214 | the host system. The struct module does not interpret this as native ordering, |
| 215 | so the ``'P'`` format is not available. |
| 216 | |
| 217 | Examples (all using native byte order, size and alignment, on a big-endian |
| 218 | machine):: |
| 219 | |
| 220 | >>> from struct import * |
| 221 | >>> pack('hhl', 1, 2, 3) |
Benjamin Peterson | 4ae1946 | 2008-07-31 15:03:40 +0000 | [diff] [blame] | 222 | b'\x00\x01\x00\x02\x00\x00\x00\x03' |
| 223 | >>> unpack('hhl', b'\x00\x01\x00\x02\x00\x00\x00\x03') |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 224 | (1, 2, 3) |
| 225 | >>> calcsize('hhl') |
| 226 | 8 |
| 227 | |
| 228 | Hint: to align the end of a structure to the alignment requirement of a |
| 229 | particular type, end the format with the code for that type with a repeat count |
| 230 | of zero. For example, the format ``'llh0l'`` specifies two pad bytes at the |
| 231 | end, assuming longs are aligned on 4-byte boundaries. This only works when |
| 232 | native size and alignment are in effect; standard size and alignment does not |
| 233 | enforce any alignment. |
| 234 | |
Benjamin Peterson | 2b7411d | 2008-05-26 17:36:47 +0000 | [diff] [blame] | 235 | Unpacked fields can be named by assigning them to variables or by wrapping |
| 236 | the result in a named tuple:: |
| 237 | |
Benjamin Peterson | 4ae1946 | 2008-07-31 15:03:40 +0000 | [diff] [blame] | 238 | >>> record = b'raymond \x32\x12\x08\x01\x08' |
Benjamin Peterson | 2b7411d | 2008-05-26 17:36:47 +0000 | [diff] [blame] | 239 | >>> name, serialnum, school, gradelevel = unpack('<10sHHb', record) |
| 240 | |
| 241 | >>> from collections import namedtuple |
| 242 | >>> Student = namedtuple('Student', 'name serialnum school gradelevel') |
Benjamin Peterson | 4ae1946 | 2008-07-31 15:03:40 +0000 | [diff] [blame] | 243 | >>> Student._make(unpack('<10sHHb', record)) |
| 244 | Student(name=b'raymond ', serialnum=4658, school=264, gradelevel=8) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 245 | |
| 246 | .. seealso:: |
| 247 | |
| 248 | Module :mod:`array` |
| 249 | Packed binary storage of homogeneous data. |
| 250 | |
| 251 | Module :mod:`xdrlib` |
| 252 | Packing and unpacking of XDR data. |
| 253 | |
| 254 | |
| 255 | .. _struct-objects: |
| 256 | |
| 257 | Struct Objects |
| 258 | -------------- |
| 259 | |
| 260 | The :mod:`struct` module also defines the following type: |
| 261 | |
| 262 | |
| 263 | .. class:: Struct(format) |
| 264 | |
| 265 | Return a new Struct object which writes and reads binary data according to the |
| 266 | format string *format*. Creating a Struct object once and calling its methods |
| 267 | is more efficient than calling the :mod:`struct` functions with the same format |
| 268 | since the format string only needs to be compiled once. |
| 269 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 270 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 271 | Compiled Struct objects support the following methods and attributes: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 272 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 273 | .. method:: pack(v1, v2, ...) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 274 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 275 | Identical to the :func:`pack` function, using the compiled format. |
| 276 | (``len(result)`` will equal :attr:`self.size`.) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 277 | |
| 278 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 279 | .. method:: pack_into(buffer, offset, v1, v2, ...) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 280 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 281 | Identical to the :func:`pack_into` function, using the compiled format. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 282 | |
| 283 | |
Benjamin Peterson | 4ae1946 | 2008-07-31 15:03:40 +0000 | [diff] [blame] | 284 | .. method:: unpack(bytes) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 285 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 286 | Identical to the :func:`unpack` function, using the compiled format. |
Benjamin Peterson | 4ae1946 | 2008-07-31 15:03:40 +0000 | [diff] [blame] | 287 | (``len(bytes)`` must equal :attr:`self.size`). |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 288 | |
| 289 | |
Georg Brandl | 7f01a13 | 2009-09-16 15:58:14 +0000 | [diff] [blame] | 290 | .. method:: unpack_from(buffer, offset=0) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 291 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 292 | Identical to the :func:`unpack_from` function, using the compiled format. |
| 293 | (``len(buffer[offset:])`` must be at least :attr:`self.size`). |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 294 | |
| 295 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 296 | .. attribute:: format |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 297 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 298 | The format string used to construct this Struct object. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 299 | |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 300 | .. attribute:: size |
Guido van Rossum | 04110fb | 2007-08-24 16:32:05 +0000 | [diff] [blame] | 301 | |
Benjamin Peterson | 4ae1946 | 2008-07-31 15:03:40 +0000 | [diff] [blame] | 302 | The calculated size of the struct (and hence of the bytes) corresponding |
Benjamin Peterson | e41251e | 2008-04-25 01:59:09 +0000 | [diff] [blame] | 303 | to :attr:`format`. |
Guido van Rossum | 04110fb | 2007-08-24 16:32:05 +0000 | [diff] [blame] | 304 | |