summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/string_startswith_upy.py
blob: 9ea1796c218fd3e5e6c49e0004baa39f88fa4eaa (plain) (blame)
1
2
3
4
5
6
# MicroPython doesn't support tuple argument

try:
    "foobar".startswith(("foo", "sth"))
except TypeError:
    print("TypeError")