index
:
openmano-mpy
master
MicroPython source and hardware configuration for OpenMano
Damien George
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
tests
/
misc
/
recursion.py
blob: 227f48396ad4799bc9f61271970d653b554d7677 (
plain
)
1
2
3
4
5
6
7
def
foo
():
foo
()
try
:
foo
()
except
RuntimeError
:
print
(
"RuntimeError"
)