2019-08-22 01:45:13 -04:00
|
|
|
# test loading from bytes and bytearray (introduced in Python 3.6)
|
|
|
|
|
|
|
|
try:
|
|
|
|
import ujson as json
|
|
|
|
except ImportError:
|
|
|
|
try:
|
|
|
|
import json
|
|
|
|
except ImportError:
|
|
|
|
print("SKIP")
|
|
|
|
raise SystemExit
|
|
|
|
|
2020-03-22 22:26:08 -04:00
|
|
|
print(json.loads(b"[1,2]"))
|
|
|
|
print(json.loads(bytearray(b"[null]")))
|