xref
: /
AliOS-Things-master
/
components
/
py_engine
/
tests
/
stress
/
recursion.py
Home
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
def
foo
():
2
foo
()
3
4
5
try
:
6
foo
()
7
except
RuntimeError
:
8
print
(
"RuntimeError"
)
9