Lines Matching defs:stack
756 in the current stack frame or in an older stack frame, or None
778 clause in the current stack frame or in an older stack frame.
937 PyObject *stack[3];
938 stack[0] = (PyObject *)frame;
939 stack[1] = whatstrings[what];
940 stack[2] = (arg != NULL) ? arg : Py_None;
950 PyObject *result = _PyObject_FastCallTstate(tstate, callback, stack, 3);
1147 Set the maximum depth of the Python interpreter stack to n.
1150 stack and crashing Python. The highest possible limit is platform-
1399 stack. This limit prevents infinite recursion from causing an overflow
1400 of the C stack and crashing Python.
1803 Return a frame object from the call stack.
1806 calls below the top of the stack. If that is deeper than the call
1807 stack, ValueError is raised. The default for depth is zero, returning
1808 the frame at the top of the call stack.
1835 "call stack is not deep enough");
1850 Return a dict mapping each thread's thread id to its current stack frame.