summaryrefslogtreecommitdiff
path: root/tests/micropython/kbd_intr.py
blob: 81977aaa52f6fccdcc88c7dfc0ac4e629f9ab15e (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)