mirror of
https://github.com/micropython/micropython.git
synced 2026-01-06 12:10:13 +01:00
12 lines
237 B
Python
12 lines
237 B
Python
# 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
|