circuitpython/tests/extmod/json_dumps_extra.py

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

10 lines
159 B
Python
Raw Normal View History

# test uPy json behaviour that's not valid in CPy
try:
import json
except ImportError:
print("SKIP")
raise SystemExit
print(json.dumps(b"1234"))