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