circuitpython/tests/micropython/native_with.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
511 B
Python
Raw Permalink Normal View History

# test with handling within a native function
2021-04-20 01:22:44 -04:00
class C:
def __init__(self):
2021-04-20 01:22:44 -04:00
print("__init__")
def __enter__(self):
2021-04-20 01:22:44 -04:00
print("__enter__")
def __exit__(self, a, b, c):
2021-04-20 01:22:44 -04:00
print("__exit__", a, b, c)
# basic with
@micropython.native
def f():
with C():
print(1)
2021-04-20 01:22:44 -04:00
f()
2023-02-01 03:08:41 -05:00
# nested with and try-except
@micropython.native
def f():
try:
with C():
print(1)
fail
print(2)
except NameError:
2021-04-20 01:22:44 -04:00
print("NameError")
f()