circuitpython/tests/extmod/ujson_dumps_ordereddict.py

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

9 lines
170 B
Python
Raw Normal View History

try:
2023-08-22 11:15:46 -04:00
import json
from collections import OrderedDict
except ImportError:
2023-08-22 11:15:46 -04:00
print("SKIP")
raise SystemExit
print(json.dumps(OrderedDict(((1, 2), (3, 4)))))