circuitpython/tests/extmod/ujson_dumps_float.py
2021-05-03 14:01:18 -07:00

12 lines
205 B
Python

try:
import ujson as json
except ImportError:
try:
import json
except ImportError:
print("SKIP")
raise SystemExit
print(json.dumps(1.2))
print(json.dumps({1.5: "hi"}))