You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
327 B
18 lines
327 B
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())
|
|
|