blob: bc714755a1a49944e8f45323ddf4da5cf904cabc (
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
|