circuitpython/tests/extmod/ubinascii_micropython.py

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

16 lines
308 B
Python
Raw Normal View History

try:
2017-02-15 01:56:22 +03:00
try:
import ubinascii as binascii
except ImportError:
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":"))