circuitpython/tests/extmod/ubinascii_micropython.py

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

13 lines
234 B
Python
Raw Normal View History

try:
2023-08-22 11:15:46 -04:00
import binascii
except ImportError:
2017-02-15 01:56:22 +03:00
print("SKIP")
raise SystemExit
# two arguments supported in uPy but not CPython
2021-03-15 19:27:36 +05:30
a = binascii.hexlify(b"123", ":")
print(a)
# zero length buffer
2021-03-15 19:27:36 +05:30
print(binascii.hexlify(b"", b":"))