diff options
Diffstat (limited to 'Doc/libstruct.tex')
-rw-r--r-- | Doc/libstruct.tex | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/libstruct.tex b/Doc/libstruct.tex index d57a2b7..af2e6d2 100644 --- a/Doc/libstruct.tex +++ b/Doc/libstruct.tex @@ -61,6 +61,9 @@ and Python values should be obvious given their types: A format character may be preceded by an integral repeat count; e.g.\ the format string \code{'4h'} means exactly the same as \code{'hhhh'}. +Whitespace characters between formats are ignored; a count and its +format must not contain whitespace though. + For the \code{'s'} format character, the count is interpreted as the size of the string, not a repeat count like for the other format characters; e.g. \code{'10s'} means a single 10-byte string, while |