12 lines
280 B
Python
12 lines
280 B
Python
|
try:
|
||
|
from io import StringIO
|
||
|
import json
|
||
|
except ImportError:
|
||
|
print("SKIP")
|
||
|
raise SystemExit
|
||
|
|
||
|
print(json.load(StringIO("null")))
|
||
|
print(json.load(StringIO('"abc\\u0064e"')))
|
||
|
print(json.load(StringIO("[false, true, 1, -2]")))
|
||
|
print(json.load(StringIO('{"a":true}')))
|