From 0bd3f3291d3ea0252a91653a1edcbfa83d524834 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Sat, 31 Oct 2015 18:43:55 +0300 Subject: [PATCH] tests/base/struct1.py: Add test for repetition counters. --- tests/basics/struct1.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/basics/struct1.py b/tests/basics/struct1.py index 1a32c482c4..61c08b74e4 100644 --- a/tests/basics/struct1.py +++ b/tests/basics/struct1.py @@ -61,3 +61,8 @@ try: struct.pack(1, 2) except TypeError: print('TypeError') + +# Initially repitition counters were supported only for strings, +# but later were implemented for all. +print(struct.unpack("<3B2h", b"foo\x12\x34\xff\xff")) +print(struct.pack("<3B", 1, 2, 3))