blob: 5d36fdca2fe01472d7e85fdba1d6f234c2a05830 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# tests stack_use function in micropython module
try:
import micropython
micropython.stack_use
except (ImportError, AttributeError):
print("SKIP")
raise SystemExit
print(type(micropython.stack_use())) # output varies
|