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
76e32dcf93
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 15:54:56 -04:00
def
foo
(
)
:
foo
(
)
run code formatting script
2021-03-15 09:57:36 -04:00
tests: Add test for catching infinite function recursion. Put into misc/ to not complicate life for builds with check disabled.
2014-06-26 15:54:56 -04:00
try
:
foo
(
)
except
RuntimeError
:
print
(
"
RuntimeError
"
)
Reference in New Issue
Copy Permalink