mirror of
https://github.com/micropython/micropython.git
synced 2025-09-06 01:40:34 +02:00
10 lines
162 B
Python
10 lines
162 B
Python
# test uPy ujson behaviour that's not valid in CPy
|
|
|
|
try:
|
|
import ujson
|
|
except ImportError:
|
|
print("SKIP")
|
|
raise SystemExit
|
|
|
|
print(ujson.dumps(b'1234'))
|