This website requires JavaScript.
Explore
Help
Sign In
djsundog
/
circuitpython
Watch
1
Star
0
Fork
0
You've already forked circuitpython
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
circuitpython
/
tests
/
stress
/
recursion.py
9 lines
85 B
Python
Raw
Normal View
History
Unescape
Escape
tests: Add test for catching infinite function recursion. Put into misc/ to not complicate life for builds with check disabled.
2014-06-26 22:54:56 +03:00
def
foo
(
)
:
foo
(
)
run code formatting script
2021-03-15 19:27:36 +05:30
tests: Add test for catching infinite function recursion. Put into misc/ to not complicate life for builds with check disabled.
2014-06-26 22:54:56 +03:00
try
:
foo
(
)
except
RuntimeError
:
print
(
"
RuntimeError
"
)
Reference in New Issue
Copy Permalink