2015-09-03 18:06:18 -04:00
|
|
|
# test uPy ujson behaviour that's not valid in CPy
|
|
|
|
|
2017-02-14 17:56:22 -05:00
|
|
|
try:
|
|
|
|
import ujson
|
|
|
|
except ImportError:
|
|
|
|
print("SKIP")
|
2017-06-10 13:14:16 -04:00
|
|
|
raise SystemExit
|
2015-09-03 18:06:18 -04:00
|
|
|
|
|
|
|
print(ujson.dumps(b'1234'))
|