circuitpython/tests/cpydiff/modules_struct_manyargs.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
259 B
Python
Raw Normal View History

"""
categories: Modules,struct
description: Struct pack with too many args, not checked by uPy
cause: Unknown
workaround: Unknown
"""
import struct
2021-03-15 09:57:36 -04:00
try:
2021-03-15 09:57:36 -04:00
print(struct.pack("bb", 1, 2, 3))
print("Should not get here")
except:
2021-03-15 09:57:36 -04:00
print("struct.error")