Skip to content

Commit

Permalink
Fix link (#3486)
Browse files Browse the repository at this point in the history
  • Loading branch information
meatball133 authored Aug 4, 2023
1 parent b585577 commit 5da0cb4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Which means that the stack of `1 + steps(number)` will grow until it reaches the
~~~~exercism/caution
In Python, we can't have a function call itself more than 1000 times by default.
Code that exceeds this recursion limit will throw a [RecursionError](https://docs.python.org/3/library/exceptions.html#RecursionError).
While it is possible to adjust the [recursion limit][recursion-limit](https://docs.python.org/3/library/sys.html#sys.setrecursionlimit), doing so risks crashing Python and may also crash your system.
While it is possible to adjust the [recursion limit](https://docs.python.org/3/library/sys.html#sys.setrecursionlimit), doing so risks crashing Python and may also crash your system.
Casually raising the recursion limit is not recommended.
~~~~

Expand Down

0 comments on commit 5da0cb4

Please sign in to comment.