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