micropython/tests/misc/cexample_class_2.py

14 wiersze
192 B
Python

# test custom native class
try:
import cexample
import gc
except ImportError:
print("SKIP")
raise SystemExit
timer = cexample.Timer()
timer = None
gc.collect()
print("done")