blob: 266885d9d1897bce1afc7b25efea589e9f714c68 (
plain)
1
2
3
4
5
6
7
|
# tests stack_use function in micropython module
import micropython
if not hasattr(micropython, "stack_use"):
print("SKIP")
else:
print(type(micropython.stack_use())) # output varies
|