circuitpython/tests/extmod/ujson_dumps_extra.py

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

10 lines
162 B
Python
Raw Normal View History

# test uPy ujson behaviour that's not valid in CPy
2017-02-14 17:56:22 -05:00
try:
import ujson
except ImportError:
print("SKIP")
raise SystemExit
2021-03-15 09:57:36 -04:00
print(ujson.dumps(b"1234"))