MCPcopy 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
74def recursive_call(n):
75 if n > 0:
76 recursive_call(n - 1)
77
78
79sys.setrecursionlimit(200)

Callers 1

stdlib_sys.pyFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected