diff options
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/struct.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/struct.rst b/Doc/library/struct.rst index d4952bb..d0960ed 100644 --- a/Doc/library/struct.rst +++ b/Doc/library/struct.rst @@ -85,7 +85,7 @@ Python values should be obvious given their types: +--------+-------------------------+--------------------+-------+ | ``i`` | :ctype:`int` | integer | | +--------+-------------------------+--------------------+-------+ -| ``I`` | :ctype:`unsigned int` | long | | +| ``I`` | :ctype:`unsigned int` | integer or long | | +--------+-------------------------+--------------------+-------+ | ``l`` | :ctype:`long` | integer | | +--------+-------------------------+--------------------+-------+ @@ -104,7 +104,7 @@ Python values should be obvious given their types: +--------+-------------------------+--------------------+-------+ | ``p`` | :ctype:`char[]` | string | | +--------+-------------------------+--------------------+-------+ -| ``P`` | :ctype:`void \*` | integer | | +| ``P`` | :ctype:`void \*` | long | | +--------+-------------------------+--------------------+-------+ Notes: |