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