blob: 25681d0c23c4e8ec946cb2ca2a55180dd8b1d40d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
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"}))
|