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