Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/RustPython/RustPython
/ recursive_call
Function
recursive_call
extra_tests/snippets/stdlib_sys.py:74–76 ·
view source on GitHub ↗
(n)
Source
from the content-addressed store, hash-verified
72
73
74
def
recursive_call(n):
75
if
n > 0:
76
recursive_call(n - 1)
77
78
79
sys.setrecursionlimit(200)
Callers
1
stdlib_sys.py
File · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected