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