circuitpython/tests/extmod/binascii_unhexlify.py

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

27 lines
521 B
Python
Raw Permalink Normal View History

try:
2023-08-22 11:15:46 -04:00
import binascii
except ImportError:
2017-02-14 17:56:22 -05:00
print("SKIP")
raise SystemExit
for x in (
b"0001020304050607",
b"08090a0b0c0d0e0f",
b"7f80ff",
b"313233344142434461626364",
):
print(binascii.unhexlify(x))
# Unicode strings can be decoded
2021-03-15 09:57:36 -04:00
print(binascii.unhexlify("313233344142434461626364"))
try:
2021-03-15 09:57:36 -04:00
a = binascii.unhexlify(b"0") # odd buffer length
except ValueError:
2021-03-15 09:57:36 -04:00
print("ValueError")
try:
2021-03-15 09:57:36 -04:00
a = binascii.unhexlify(b"gg") # digit not hex
except ValueError:
2021-03-15 09:57:36 -04:00
print("ValueError")