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

try:
    "foobar".endswith(("bar", "sth"))
except TypeError:
    print("TypeError")