diff options
Diffstat (limited to 'tests/cpydiff/modules_struct_manyargs.py')
-rw-r--r-- | tests/cpydiff/modules_struct_manyargs.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/cpydiff/modules_struct_manyargs.py b/tests/cpydiff/modules_struct_manyargs.py index cdbb5c672..03395baad 100644 --- a/tests/cpydiff/modules_struct_manyargs.py +++ b/tests/cpydiff/modules_struct_manyargs.py @@ -5,8 +5,9 @@ cause: Unknown workaround: Unknown """ import struct + try: - print(struct.pack('bb', 1, 2, 3)) - print('Should not get here') + print(struct.pack("bb", 1, 2, 3)) + print("Should not get here") except: - print('struct.error') + print("struct.error") |