circuitpython/tests/extmod/ujson_dumps_float.py

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

9 lines
135 B
Python
Raw Normal View History

try:
2023-08-22 11:15:46 -04:00
import json
except ImportError:
2023-08-22 11:15:46 -04:00
print("SKIP")
raise SystemExit
print(json.dumps(1.2))
print(json.dumps({1.5: "hi"}))