drone-micropython-raw 0.1.1

Bindings to MicroPython.
1
2
3
4
5
6
7
8
# test bytes + other
try:
    import array
except ImportError:
    print("SKIP")
    raise SystemExit

print(b"123" + array.array('i', [1]))