mirror of
https://github.com/W3SLAV/micropython.git
synced 2025-06-19 20:15:33 -04:00

This work was funded through GitHub Sponsors. Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
10 lines
159 B
Python
10 lines
159 B
Python
# test uPy json behaviour that's not valid in CPy
|
|
|
|
try:
|
|
import json
|
|
except ImportError:
|
|
print("SKIP")
|
|
raise SystemExit
|
|
|
|
print(json.dumps(b"1234"))
|