1# test uPy ujson behaviour that's not valid in CPy
2
3try:
4    import ujson
5except ImportError:
6    print("SKIP")
7    raise SystemExit
8
9print(ujson.dumps(b"1234"))
10