You've already forked Core2forAWS-MicroPython
mirror of
https://github.com/m5stack/Core2forAWS-MicroPython.git
synced 2026-05-20 10:30:31 -07:00
19 lines
327 B
Python
19 lines
327 B
Python
try:
|
|
from uio import StringIO
|
|
import ujson as json
|
|
except:
|
|
try:
|
|
from io import StringIO
|
|
import json
|
|
except ImportError:
|
|
print("SKIP")
|
|
raise SystemExit
|
|
|
|
s = StringIO()
|
|
json.dump(False, s)
|
|
print(s.getvalue())
|
|
|
|
s = StringIO()
|
|
json.dump({"a": (2, [3, None])}, s)
|
|
print(s.getvalue())
|