Lines Matching refs:depth
1147 Set the maximum depth of the Python interpreter stack to n.
1166 /* Reject too low new limit if the current recursion depth is higher than
1168 int depth = tstate->recursion_limit - tstate->recursion_remaining;
1169 if (depth >= new_limit) {
1172 "the recursion depth %i: the limit is too low",
1173 new_limit, depth);
1184 depth: int
1188 Coroutine objects will track 'depth' frames of traceback information
1191 Set a depth of 0 to disable.
1195 sys_set_coroutine_origin_tracking_depth_impl(PyObject *module, int depth)
1198 if (_PyEval_SetCoroutineOriginTrackingDepth(depth) < 0) {
1398 The recursion limit is the maximum depth of the Python interpreter
1800 depth: int = 0
1805 If optional integer depth is given, return the frame object that many
1807 stack, ValueError is raised. The default for depth is zero, returning
1815 sys__getframe_impl(PyObject *module, int depth)
1822 while (depth > 0) {
1830 --depth;
2496 getrecursionlimit() -- return the max recursion depth for the interpreter\n\
2501 setrecursionlimit() -- set the max recursion depth for the interpreter\n\