@ -779,7 +779,7 @@ player = Player(point, direction) <span class="hljs-comment">#
<ul>
<li><strong>Default size of the cache is 128 values. Passing <codeclass="python hljs"><spanclass="hljs-string">'maxsize=None'</span></code> makes it unbounded.</strong></li>
<li><strong>CPython interpreter limits recursion depth to 1000 by default. To increase it use <codeclass="python hljs"><spanclass="hljs-string">'sys.setrecursionlimit(<depth>)'</span></code>.</strong></li>
<li><strong>CPython interpreter limits recursion depth to 1000 by default. To increase it use <codeclass="python hljs"><spanclass="hljs-string">'sys.setrecursionlimit(<int>)'</span></code>.</strong></li>
</ul>
<div><h3id="parametrizeddecorator">Parametrized Decorator</h3><p><strong>A decorator that accepts arguments and returns a normal decorator that accepts a function.</strong></p><pre><codeclass="python language-python hljs"><spanclass="hljs-keyword">from</span> functools <spanclass="hljs-keyword">import</span> wraps