diff options
author | Damien George <damien.p.george@gmail.com> | 2017-09-01 10:10:51 +1000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2017-09-01 10:10:51 +1000 |
commit | 793d826d9df67c3f544505beda63ca36d8dfa1c4 (patch) | |
tree | 7d5fe63db397e3fc7deec311b1f4b268c0d117a5 /tests/basics/struct_micropython.py.exp | |
parent | b349479a49aab440b2f38fc6e45b3df4bf7a1aa7 (diff) |
py/modstruct: In struct.pack, stop converting if there are no args left.
This patch makes a repeat counter behave the same as repeating the
typecode, when there are not enough args. For example:
struct.pack('2I', 1) now behave the same as struct.pack('II', 1).
Diffstat (limited to 'tests/basics/struct_micropython.py.exp')
-rw-r--r-- | tests/basics/struct_micropython.py.exp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/basics/struct_micropython.py.exp b/tests/basics/struct_micropython.py.exp index 0ca95142b..55b7b6623 100644 --- a/tests/basics/struct_micropython.py.exp +++ b/tests/basics/struct_micropython.py.exp @@ -1 +1,2 @@ True +b'\x01\x00\x00\x00\x00\x00\x00\x00' |