1# test the micropython.kbd_intr() function
2
3import micropython
4
5try:
6    micropython.kbd_intr
7except AttributeError:
8    print("SKIP")
9    raise SystemExit
10
11# just check we can actually call it
12micropython.kbd_intr(3)
13