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