Lines Matching defs:current
176 /* The current implementation cannot be called if tstate is not
177 the current Python thread state. */
753 Return the current exception.
756 in the current stack frame or in an older stack frame, or None
775 Return current exception information: (type, value, traceback).
778 clause in the current stack frame or in an older stack frame.
843 Return the current default encoding used by the Unicode implementation.
1131 Return the current thread switch interval; see sys.setswitchinterval().
1166 /* Reject too low new limit if the current recursion depth is higher than
1396 Return the current value of the recursion limit.
1586 Return the current value of the flags that are used for dlopen calls.
1850 Return a dict mapping each thread's thread id to its current stack frame.
1865 Return a dict mapping each thread's identifier to its current raised exception.
2174 _Py_PreInitEntry current = *optionlist;
2179 while (current != NULL) {
2180 _Py_PreInitEntry next = current->next;
2181 PyMem_RawFree(current->value);
2182 PyMem_RawFree(current);
2183 current = next;
2490 exception() -- return the current thread's active exception\n\
2491 exc_info() -- return information about the current thread's active exception\n\