summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/struct_endian.py
Commit message (Collapse)AuthorAge
* py/modstruct: Fix struct.pack_into with unaligned offset of native type.Damien George2019-09-02
| | | | Following the same fix for unpack.
* py/modstruct: Fix struct.unpack with unaligned offset of native type.Tom McDermott2019-09-02
With this patch alignment is done relative to the start of the buffer that is being unpacked, not the raw pointer value, as per CPython. Fixes issue #3314.